I use graphview library on my android project. I made a graph, but i want to remove this lines i marked them with black
Asked
Active
Viewed 123 times
-2
-
Possible duplicate of [Make Grid Lines Invisible Android GraphView](http://stackoverflow.com/questions/31260218/make-grid-lines-invisible-android-graphview) – nbokmans Nov 25 '16 at 16:46
1 Answers
0
From the documentation, something like this should work:
graphView.getGridLabelRenderer().setGridStyle(GridLabelRenderer.GridStyle.NONE)
graph.getViewport().setDrawBorder(true);

Bajal
- 5,487
- 3
- 20
- 25
-
You have a typo -- `Broder` instead of `Border`. Also, see if you have the right version : `compile 'com.jjoe64:graphview:4.2.1'` – Bajal Nov 25 '16 at 19:38
-