fix(examples) use LV_PART_INDICATOR to target the points on line chart

This commit is contained in:
Gabor Kiss-Vamosi
2021-04-21 13:22:55 +02:00
parent 36a699fbe4
commit 7522858d07
2 changed files with 1 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ void lv_example_chart_5(void)
lv_chart_set_range(chart, LV_CHART_AXIS_PRIMARY_Y, -1000, 1000);
/*Do not display points on the data*/
lv_obj_set_style_size(chart, 0, LV_PART_ITEMS);
lv_obj_set_style_size(chart, 0, LV_PART_INDICATOR);
lv_chart_series_t * ser = lv_chart_add_series(chart, lv_color_red(), LV_CHART_AXIS_PRIMARY_Y);