GraphView
GraphView copied to clipboard
Question: Possible to habe dotted Gridlines?
Hi,
for the Series, I can do something like this:
Paint paint = new Paint(); paint.setStyle(Paint.Style.STROKE); paint.setStrokeWidth(10); paint.setPathEffect(new DashPathEffect(new float[]{8, 5}, 0)); series2.setCustomPaint(paint);
Is it possible to do the same for the gridlines?