Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JFreeChart: is it possible to combine a stacked bars and line chart combined?

Tags:

jfreechart

As in this mockup:

Layered chart

I know it is possible to have charts display next to each other using org.jfree.chart.plot.CombinedDomainXYPlot, but is it possible to have them overlaid, possibly using different Y axes (one for the stacked bars to the left of the chart, and one for the line chart shown to the right of the chart)?

like image 508
avernet Avatar asked Sep 27 '10 21:09

avernet


1 Answers

Yes, the chart entitled DualAxisDemo1, shown among the Multiple Axis Charts, is an example. In addition to a second data set and renderer, you need a second axis, as discussed in this question & answer. This related example combines two renderers; this related example combines two axes.

like image 69
trashgod Avatar answered Sep 28 '22 08:09

trashgod