We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfca469 commit 334c8cbCopy full SHA for 334c8cb
src/charting/renderer/AxisRenderer.ts
@@ -51,11 +51,13 @@ export abstract class AxisRenderer extends Renderer {
51
this.mGridPaint = new Paint();
52
this.mGridPaint.setColor('gray');
53
this.mGridPaint.setStrokeWidth(1);
54
+ this.mGridPaint.setAntiAlias(true);
55
this.mGridPaint.setStyle(Style.STROKE);
56
this.mGridPaint.setAlpha(90);
57
58
this.mAxisLinePaint = new Paint();
59
this.mAxisLinePaint.setColor('black');
60
+ this.mAxisLinePaint.setAntiAlias(true);
61
this.mAxisLinePaint.setStrokeWidth(1);
62
this.mAxisLinePaint.setStyle(Style.STROKE);
63
0 commit comments