Search found 3 matches
- Thu Mar 01, 2007 1:50 am
- Forum: JFreeChart
- Topic: XYStepRenderer and setGapThreshold
- Replies: 0
- Views: 1849
XYStepRenderer and setGapThreshold
It looks to me that if I move from StandardXYItemRenderer to XYStepRenderer (we are using a time series) I lose the ability to specify a gap threshold for when no connecting lines should be drawn? I can see from another post that inserting nulls needs a patch (maybe fixed now?) Any clues on how to w...
- Wed Mar 22, 2006 12:19 am
- Forum: JFreeChart
- Topic: sun.dc.pr.PRException: endPath: bad path
- Replies: 7
- Views: 9058
How to re-create sun.dc.pr.PRException: endPath: bad path
It is easy to re-create this. 1. Run TimeSeriesDemo1 2. Continue to zoom in on any segment of line (must be an actual line segment), you will eventually see the exception. FWIW I have seem the same thing when zooming in deeply to picolo based applications as well. I am using JFreeChart 1.0.1 & JRE 1...
- Wed Mar 08, 2006 7:33 am
- Forum: JFreeChart
- Topic: Is This a Bug?
- Replies: 8
- Views: 9958
A real bug in JDBCCategoryDataset.java:215
The for loop that tries to remove the old values starting at JDBCCategoryDataset.java:215 has flawed logic // Remove any previous old data int i = getRowCount(); for(;i >= 0;--i) { removeRow(i); } won't work, it will always throw IndexOutOfBoundsException because i the first time around will be size...