Search found 44 matches

by nicky
Wed Aug 25, 2004 10:55 pm
Forum: JFreeChart
Topic: ToolTips
Replies: 3
Views: 2987

How many lines to you have on your graph? From what I understand, with the tooltips on the XY line charts, they only work for the first line (well, that's all I could get working anyway). So you may just want to check with the first line that is generated if you have more than one line.

HTH
by nicky
Mon Aug 16, 2004 10:39 pm
Forum: JFreeChart
Topic: null pointer exception
Replies: 1
Views: 2032

Could you show the full error please? Easier to understand what is going on.

Nicky
by nicky
Fri Aug 13, 2004 12:17 am
Forum: JFreeChart
Topic: Displaying text on a line chart
Replies: 5
Views: 4298

Hi Denis. I've done something very similar to what you are asking. Here's what I've done: XYTextAnnotation lowerAnn; XYTextAnnotation upperAnn; lowerAnn = new XYTextAnnotation(confidence_intervals[i]+"% low",xvalue+2.0,lowery); upperAnn = new XYTextAnnotation(confidence_intervals[i]+"% high",xvalue+...
by nicky
Wed Aug 04, 2004 10:41 pm
Forum: JFreeChart
Topic: Image properties
Replies: 3
Views: 4335

Maybe you should explain what you mean a little more. I don't fully understand what you are asking.
by nicky
Tue Aug 03, 2004 12:25 am
Forum: JFreeChart
Topic: execute charts (demo classes ) in jsp
Replies: 1
Views: 2422

You should probably try searching the forum using the search word jsp. There are numerous threads regarding your query.
by nicky
Thu Jul 29, 2004 11:02 pm
Forum: JFreeChart
Topic: Turnery chart.
Replies: 7
Views: 6750

Do you mean ternary chart?
by nicky
Mon Jul 26, 2004 11:11 pm
Forum: JFreeChart
Topic: sun.dc.pr.PRException: endPath: bad path - any solution?
Replies: 3
Views: 5311

This is a well know bug. If you search suns java bug database you will find that this is an annoying bug. In most cases it is only a warning that you are usning big coordinates (some native methods only handle 16 bit integers). This exception will not be thrown in java/1.5-beta2 and forward. Try to ...
by nicky
Thu Jul 15, 2004 10:40 pm
Forum: JFreeChart
Topic: Background-color of the image
Replies: 3
Views: 3469

I think this is what you want.

Code: Select all

public static final Color DEFAULT_COLOR_BACKGROUND =
		new Color(236,233,216);

JFreeChart chart = new JFreeChart("title", "font", plot, false);
chart.setBackgroundPaint(DEFAULT_COLOR_BACKGROUND);
Nicky
by nicky
Wed Jul 07, 2004 11:17 pm
Forum: JFreeChart
Topic: can I apply jfreechart this way....
Replies: 1
Views: 2067

Can jfreechart be used to display a chart within an html page. I'm in an ASP-based site, and some data is generated and stored somewhere, and then I want to point jfreechart at this data and have it display a chart within the site... is that possible? What kind of datasources can jfreechart connect...
by nicky
Mon Jul 05, 2004 5:32 am
Forum: JFreeChart
Topic: how can i use jfreechart in linux correctly
Replies: 9
Views: 12931

Have you got more than one jfreechart.jar and jcommon.jar in your classpath at one time?
by nicky
Fri Jul 02, 2004 4:33 am
Forum: JFreeChart
Topic: how can i use jfreechart in linux correctly
Replies: 9
Views: 12931

It's on the forum at the very top called "FREQUENTLY ASKED QUESTIONS"

http://www.jfree.org/phpBB2/viewtopic.php?t=8420

Nicky
by nicky
Tue Jun 29, 2004 10:43 pm
Forum: JFreeChart
Topic: How can i print charts
Replies: 2
Views: 4221

otherwise you can print to PDF using the iText Library. http://www.lowagie.com/iText/

Nicky
by nicky
Mon Jun 28, 2004 11:00 pm
Forum: JFreeChart
Topic: Demo Source code
Replies: 1
Views: 4060

It's within the rest of the source code that you can download (within the jfreechart-0.9.20.zip).

The file location is : jfreechart-0.9.20\src\org\jfree\chart\demo

Nicky
by nicky
Tue Jun 22, 2004 3:00 am
Forum: JFreeChart
Topic: ToolTips for XYLineChart
Replies: 1
Views: 3451

Hi Jon, I was also going to use ToolTips for my XYLineChart, and got the ToolTips working, but with my version of JFreeChart (0.9.18 ) they only work for the first line that is generated. I don't think that it has been extended further in the last two releases (I could be wrong though). As ToolTips ...
by nicky
Fri May 14, 2004 6:44 am
Forum: JFreeChart
Topic: Draw some Series as just lines and some as symbols in XYPlot
Replies: 3
Views: 6308

I used the renderer XYLineAndShapeRenderer and they have the method setSeriesLinesVisible(int series, boolean visible) and the method setSeriesShapesVisible(int series, boolean visible) . I'm presuming most of the other renderers would have something similar.

Nicky