From 8788317bb122e65db760d23493407410d9fcd192 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Mon, 26 Oct 2020 15:18:41 +0100 Subject: [PATCH] chart: remove LV_CHART_SCATTER option which was only an accidental leftover --- src/lv_widgets/lv_chart.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lv_widgets/lv_chart.h b/src/lv_widgets/lv_chart.h index 797edc378..aad881680 100644 --- a/src/lv_widgets/lv_chart.h +++ b/src/lv_widgets/lv_chart.h @@ -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;