-2

I use graphview library on my android project. I made a graph, but i want to remove this lines i marked them with black

GerrDott
  • 13
  • 5
  • 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 Answers1

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
  • Thank you very much! I had an old version of this library. – GerrDott Nov 26 '16 at 13:38