Right axis not visible
Posted: Thu Dec 13, 2012 3:04 pm
I cant get the right axis to be displayed. Left axis works fine using this:
But on right axis I tried all combinations of the following, still nothing appears:
How can I make the right axis to appear?
Code: Select all
chart.getAxes().getLeft().setVisible(true);
chart.getAxes().getLeft().getGrid().setVisible(false);
Code: Select all
chart.getAxes().getRight().setVisible(true);
chart.getAxes().getRight().getGrid().setVisible(true);
chart.getAxes().getRight().getTicks().setVisible(true);
chart.getAxes().getRight().getLabels().setVisible(true);
chart.getAxes().getRight().getAxisPen().setVisible(true);
chart.getAxes().getRight().getTitle().setVisible(true)