質問

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?

役に立ちましたか?

解決 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.

他のヒント

You need to use:

renderer.setShowCustomTextGrid(true);
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top