Frage

I want a functionality where if user clicks on the the graph and if the x co ordinate is close to our point on XY line graph then I want to show a vertical grid for that point.

The only function that seems related is mRenderer.setShowCustomTextGridY(boolean showGrid)

But for which value should the grid be shown is not clear in the documentation.

Please help. Which function should I use?

War es hilfreich?

Lösung 2

Once you have the X axis value, you can add a custom text label this way:

renderer.addXTextLabel(x, "label");

Then, if you call a mChartView.repaint(), the custom text grid will be displayed.

Andere Tipps

You need to use:

renderer.setShowCustomTextGrid(true);
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top