Search found 4 matches
- Thu Dec 27, 2012 10:52 pm
- Forum: JFreeChart
- Topic: Scatter plot with JFreeChart graph
- Replies: 4
- Views: 8719
Re: Scatter plot with JFreeChart graph
If you were trying to get the different series to show up with different colors, another way would be to add each of the 3 series to your initial dataset, and then could skip the extra work of creating more datasets and renderers. If your original code had tried adding a new dataset for each series,...
- Wed Dec 05, 2012 6:58 pm
- Forum: JFreeChart
- Topic: Bug - AutoRange in TimeSeriesChart
- Replies: 13
- Views: 24026
Re: Bug - AutoRange in TimeSeriesChart
I am seeing the same kind of problem with 'autorange' and a timeseries. In this case, the autorange does not see a value if it is for a Day added into an existing series, after a 'within-range' point has been added for the same Day. I haven't seen a workaround in related questions. Once the range-ex...
- Wed Jun 13, 2012 7:24 pm
- Forum: JFreeChart
- Topic: DynamicTimeSeriesCollection limitation
- Replies: 3
- Views: 5060
Re: DynamicTimeSeriesCollection limitation
Thanks, this is working for me, doing the same thing with Day instead of Millisecond.
- Wed Jun 13, 2012 1:42 pm
- Forum: JFreeChart
- Topic: DynamicTimeSeriesCollection limitation
- Replies: 3
- Views: 5060
DynamicTimeSeriesCollection limitation
The DynamicTimeSeriesCollection looks like the dataset I'd like to use, but the current constructor will only set up the points if the RegulartTimePeriod is a Second, Minute, or Hour. I am feeding daily events to a simulator model with a range over a couple years, so would like the code extended to ...