Search found 5 matches
- Wed Mar 14, 2007 12:45 pm
- Forum: JFreeChart
- Topic: Range(double, double): require lower (Infinity) <= ...
- Replies: 10
- Views: 14740
ok, here are the relevant bits of code. where I create the chart: NumberAxis yAxis = new NumberAxis("Bytes"); DateAxis dateAxis = new DateAxis("Hour"); TimeTableXYDataset ttd = (TimeTableXYDataset)data; dateAxis.setTickUnit(new DateTickUnit(DateTickUnit.HOUR), 1)); XYPlot plot = new XYPlot(ttd, date...
- Tue Mar 13, 2007 1:03 pm
- Forum: JFreeChart
- Topic: Range(double, double): require lower (Infinity) <= ...
- Replies: 10
- Views: 14740
whoops, been out sick so didn't get a chance to pop back on here.... I think I had been setting a max range but there was never a null dataset. The dataset was always 0 filled in the event that there was no data (have a line chart based on the same dataset and that works fine). It's late but I'll tr...
- Fri Mar 09, 2007 3:07 pm
- Forum: JFreeChart
- Topic: Range(double, double): require lower (Infinity) <= ...
- Replies: 10
- Views: 14740
- Thu Mar 08, 2007 3:41 pm
- Forum: JFreeChart
- Topic: Range(double, double): require lower (Infinity) <= ...
- Replies: 10
- Views: 14740
Range(double, double): require lower (Infinity) <= ...
Hello again, I've got a stackedxyareachart based on a timetablexydataset. When the timetablexydataset is populated with only 0 value tasks, I receive the following exception from the chart: java.lang.IllegalArgumentException raised: Range(double, double): require lower (Infinity) <= upper (-Infinity...
- Wed Mar 07, 2007 3:35 pm
- Forum: JFreeChart
- Topic: StackedXYAreaChart, TimeTableXYDataset, and x axis
- Replies: 1
- Views: 3637
StackedXYAreaChart, TimeTableXYDataset, and x axis
Hello all, JFreechart seems excellent thus far. I'm having a bit of a problem with creating a stackedxyareachart from a timetablexydataset right now though. It's almost assuredly a lack of understanding on my part but I would appreciate any information that might be able to set me straight. What I'm...