Chart: [Android] CartesianChartGrid X MajorLines are not showing
After setting the MajorLinesVisibility property to GridLineVisibility.Xy only the Y lines are showing up.
1 comment
ADMIN
Didi
Posted on:14 Aug 2019 12:11
Workaround for this issue:
You can implement your own custom renderer an configure the native control's gridlines in it. Mainly, you will need to create a class inside the Android project and then register your custom renderer using the ExportRenderer assembly level attribute. For example:
public class CustomChartRenderer : CartesianChartRenderer
{
public CustomChartRenderer(Context context) : base(context)