Lines Matching refs:data
5 Charts are a basic object to visualize data points. Currently *Line* charts (connect points with li…
28 The following data display types exist:
29 - `LV_CHART_TYPE_NONE` Do not display any data. Can be used to hide the series.
30 … `LV_CHART_TYPE_LINE` Draw lines between the data points and/or points (rectangles or circles) on…
38 …n `lv_chart_series_t` structure which contains the chosen `color` and an array for the data points.
51 Note: you should call `lv_chart_refresh(chart)` after the external data source has been updated to …
57 ### Modify the data
58 You have several options to set the data of series:
71 - `LV_CHART_UPDATE_MODE_SHIFT` Shift old data to the left and add the new one to the right.
72 - `LV_CHART_UPDATE_MODE_CIRCULAR` - Add the new data in circular fashion, like an ECG diagram.
81 …lly, the Chart will draw only vertical lines to make the drawing of large amount of data effective.