Как удалить линии сетки над точкой данных в библиотеке MPAndroidChart? - PullRequest
0 голосов
/ 14 июля 2020

Это мой график

Current Graph image


I want to remove the Gridlines above Data points. I just want Gridline below the data points. Also I would like the dashed line effect.

Below is what I'm doing right now.

    chart.getXAxis().setDrawGridLines(true);
    chart.getXAxis().setGridLineWidth(0.5f);
    chart.getXAxis().setGridColor(Color.WHITE);
    chart.getXAxis().setDrawGridLinesBehindData(true);

I want like this

Что я хочу

...