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
Search found 44 matches
- Mon Aug 16, 2004 10:39 pm
- Forum: JFreeChart
- Topic: null pointer exception
- Replies: 1
- Views: 2032
- 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+...
- Wed Aug 04, 2004 10:41 pm
- Forum: JFreeChart
- Topic: Image properties
- Replies: 3
- Views: 4335
- Tue Aug 03, 2004 12:25 am
- Forum: JFreeChart
- Topic: execute charts (demo classes ) in jsp
- Replies: 1
- Views: 2422
- Thu Jul 29, 2004 11:02 pm
- Forum: JFreeChart
- Topic: Turnery chart.
- Replies: 7
- Views: 6750
- 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 ...
- 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.
Nicky
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);
- 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...
- Mon Jul 05, 2004 5:32 am
- Forum: JFreeChart
- Topic: how can i use jfreechart in linux correctly
- Replies: 9
- Views: 12931
- 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
http://www.jfree.org/phpBB2/viewtopic.php?t=8420
Nicky
- Tue Jun 29, 2004 10:43 pm
- Forum: JFreeChart
- Topic: How can i print charts
- Replies: 2
- Views: 4221
- Mon Jun 28, 2004 11:00 pm
- Forum: JFreeChart
- Topic: Demo Source code
- Replies: 1
- Views: 4060
- 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 ...
- 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