Search found 4 matches

by MartinL
Mon Feb 20, 2012 10:51 am
Forum: JFreeChart
Topic: Bug - AutoRange in TimeSeriesChart
Replies: 13
Views: 24026

Re: Bug - AutoRange in TimeSeriesChart

bump.

Any updates on that?

I guess the problem is in the addAndUpdate() function. The maxY value is set wrong after changing the last value and adding another one.

Regards,

MartinL
by MartinL
Wed Feb 15, 2012 3:56 pm
Forum: JFreeChart
Topic: Bug - AutoRange in TimeSeriesChart
Replies: 13
Views: 24026

Re: Bug - AutoRange in TimeSeriesChart

I have turned on AutoRange. It should set the range automatically from minimum value to maximum value. Instead of getting the right maximum value (18000) it takes (probably) the second last value (3000). So it cuts off the part above 3000. I add my values over time, every 1 minute for 60 minutes. An...
by MartinL
Wed Feb 15, 2012 1:07 pm
Forum: JFreeChart
Topic: XYBarChart - Bar width problem
Replies: 2
Views: 5141

Re: XYBarChart - Bar width problem

I have found a way to change the appearance of the Bars: public static JFreeChart createTicketChart(String title, String xAxis, String yAxis, final IntervalXYDataset dataset) { final JFreeChart chart = ChartFactory.createXYBarChart(title, xAxis, true, yAxis, dataset, PlotOrientation.VERTICAL, true, ...
by MartinL
Wed Feb 15, 2012 12:29 pm
Forum: JFreeChart
Topic: Bug - AutoRange in TimeSeriesChart
Replies: 13
Views: 24026

Bug - AutoRange in TimeSeriesChart

Hi,

I want to report this bug. It occures about 5-10 Times every hour when updating my DataSet every Minute.

Here is a Demo:
http://tinyurl.com/AutoRangeBug
Image

It seems, like it saves the wrong maxY value and uses only the second last value.


Regards,

Martin