Is it possible to add dot lines in the grid only for the selected values.For example the y-axis value is (0,25,50,100,125,150,175,200) .In that i want to add dot lines (with specific color) only the value containing 100 and 200.For other values it should be straight line..
Code: Select all
plot.setRangeGridlinesVisible(true);
plot.setRangeGridlinePaint(Color.LIGHT_GRAY);
plot.setRangeGridlineStroke(new BasicStroke(1.0F));