Home
last modified time | relevance | path

Searched refs:LV_CHART_POINT_NONE (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/examples/widgets/chart/
Dlv_example_chart_9.c15 a[(s + 1) % p] = LV_CHART_POINT_NONE; in add_data()
16 a[(s + 2) % p] = LV_CHART_POINT_NONE; in add_data()
17 a[(s + 2) % p] = LV_CHART_POINT_NONE; in add_data()
Dlv_example_chart_4.c18 if(id == LV_CHART_POINT_NONE) return; in event_cb()
Dlv_example_chart_6.c16 if(last_id != LV_CHART_POINT_NONE) { in event_cb()
/lvgl-latest/src/extra/widgets/chart/
Dlv_chart.h26 #define LV_CHART_POINT_NONE (INT32_MAX) macro
28 #define LV_CHART_POINT_NONE (INT16_MAX)
30 LV_EXPORT_CONST_INT(LV_CHART_POINT_NONE);
Dlv_chart.c352 lv_coord_t def = LV_CHART_POINT_NONE; in lv_chart_add_series()
456 cursor->pos.x = LV_CHART_POINT_NONE; in lv_chart_add_cursor()
457 cursor->pos.y = LV_CHART_POINT_NONE; in lv_chart_add_cursor()
458 cursor->point_id = LV_CHART_POINT_NONE; in lv_chart_add_cursor()
664 chart->pressed_point_id = LV_CHART_POINT_NONE; in lv_chart_constructor()
731 chart->pressed_point_id = LV_CHART_POINT_NONE; in lv_chart_event()
963 … if(ser->y_points[p_prev] != LV_CHART_POINT_NONE && ser->y_points[p_act] != LV_CHART_POINT_NONE) { in draw_series_line()
989 part_draw_dsc.p1 = ser->y_points[p_prev] != LV_CHART_POINT_NONE ? &p1 : NULL; in draw_series_line()
990 part_draw_dsc.p2 = ser->y_points[p_act] != LV_CHART_POINT_NONE ? &p2 : NULL; in draw_series_line()
996 … if(ser->y_points[p_prev] != LV_CHART_POINT_NONE && ser->y_points[p_act] != LV_CHART_POINT_NONE) { in draw_series_line()
[all …]
/lvgl-latest/docs/widgets/extra/
Dchart.md64 Use `LV_CHART_POINT_NONE` as value to make the library skip drawing that point, column, or line seg…