1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

chart: remove LV_CHART_SCATTER option which was only an accidental leftover

This commit is contained in:
Gabor Kiss-Vamosi 2020-10-26 15:18:41 +01:00
parent cc921dae17
commit 8788317bb1

View File

@ -42,7 +42,6 @@ enum {
LV_CHART_TYPE_NONE = 0x00, /**< Don't draw the series*/
LV_CHART_TYPE_LINE = 0x01, /**< Connect the points with lines*/
LV_CHART_TYPE_COLUMN = 0x02, /**< Draw columns*/
LV_CHART_TYPE_SCATTER = 0x03, /**< X/Y chart, points and/or lines*/
};
typedef uint8_t lv_chart_type_t;