Hi all!
I've done a price/volume chart with a CombinedDomainXYPlot.
The domain axis is drawn under the second subplot(volume)
I'd like make it drawn between the the two subplot (price and volume).
It is possible?
Is it possible?
Re: Is it possible?
Hi, you can display the domain axis on the first subplot
or change the axis location
Code: Select all
subplot1.setDomainAxis(plot.getDomainAxis());
Code: Select all
subplot2.setDomainAxisLocation(AxisLocation.TOP_OR_LEFT);
Re: Is it possible?
Thanks!