There are some functions to set up series points coordinates
void lv_chart_set_ext_y_array(lv_obj_t * obj, lv_chart_series_t * ser, lv_coord_t array[])
void lv_chart_set_ext_x_array(lv_obj_t * obj, lv_chart_series_t * ser, lv_coord_t array[])
They are uses lv_coord_t array, which are integers.
Is it possible to set fractional values for the X-axis on the chart (x=5.5, x=10.5)?
Or maybe there is some way to set up the graph so that the points are specified as integers, but displayed on the graph as fractions. Ыimilar to that, I set an array containing x = 0, 5, 10, 15, and on the chart they were displayed at points 0, 0.5, 1
Environment
- MCU/MPU/Board:
- LVGL version: See 8.4.0


