GraphView icon indicating copy to clipboard operation
GraphView copied to clipboard

Question: Possible to habe dotted Gridlines?

Open DaXmYsT opened this issue 7 years ago • 0 comments

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?

DaXmYsT avatar Sep 03 '18 11:09 DaXmYsT