I have an issue with my graph, when I plot my data, the Range Origin Label is not showing. That is, the first label on the Y-axis is not displayed. I have set my Range step to be:
plotView.setRangeStep(XYStepMode.SUBDIVIDE, 10);
However, it only shows 9 labels.
How do I make sure that the range origin label is set?
I have already tried the following:
widget.getRangeLabelPaint().setColor(Color.BLACK);
widget.getRangeOriginLinePaint().setColor(Color.BLACK);
Any help is greatly appreciated.
