Dear Sir,
When I use VerticalBarChart, there is a blue dot line on the chart. May I know what is that for? I thought that was a aveage line, but it isn't. Also, I can turn off that blue dot line? Thanx a lot for help.
a blue line?
Re: a blue line?
Hello,
I figured out when I click the mouse, the blue line will move. I know what is that for now. Thanx...However, there should be a method to close it, right?
I figured out when I click the mouse, the blue line will move. I know what is that for now. Thanx...However, there should be a method to close it, right?
Re: a blue line?
Hi Jason,
You can switch off the crosshair line for an axis like this:
Plot plot = chart.getPlot();
NumberAxis axis = (NumberAxis)plot.getAxis(Axis.HORIZONTAL);
axis.setCrosshairVisible(false);
Regards,
DG.
You can switch off the crosshair line for an axis like this:
Plot plot = chart.getPlot();
NumberAxis axis = (NumberAxis)plot.getAxis(Axis.HORIZONTAL);
axis.setCrosshairVisible(false);
Regards,
DG.