Particular kind of area chart

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
volker

Particular kind of area chart

Post by volker » Mon Mar 10, 2003 5:30 pm

Hi!

I've to create a special kind of area chart which has variable
min values. The min value of the area is not 0 as it is shown in
the examples (AreaChartDemo, AreaXYChartDemo, AreaXYChartDemo2)
which are in jfreechart package. Both the min value and the max value
varies. So the generated area should not be delimited by the 0 axis.

Can anyone help me?

thanks in advance

volker

David Gilbert

Re: Particular kind of area chart

Post by David Gilbert » Tue Mar 11, 2003 2:37 pm

You would need to create a custom renderer to handle this. You could probably use the IntervalCategoryDataset as the data source.

Regards,

Dave Gilbert

Locked