Charts in lvgl 8.0

I want to remove the grid lines in chart ( Display 1000 data points with zooming and scrolling).Can you please tell me which API is used for removing grid lines in chart?

Hi @Amreen_Jamadar ,

You can use the API:

    lv_chart_set_div_line_count(chart, 0, 0);

See the documentation online here.

Hope that helps…

Kind Regards,

Pete

1 Like