This is my code
mLineChart.setDrawBorders(false);
mLineChart.setBorderWidth(0);
i try use setDrawBorders(false),but left and right have gray thin line,
how hide this line?

Try adding :
mLineChart.getAxisLeft().setDrawAxisLine(false); mLineChart.getAxisRight().setDrawAxisLine(false);
You can also check if this axis draw enabled or not by :
mLineChart.getAxisLeft().isDrawAxisLineEnabled(); mLineChart.getAxisRight().isDrawAxisLineEnabled();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With