Searched refs:series (Results 1 – 10 of 10) sorted by relevance
/lvgl-latest/docs/details/widgets/ |
D | chart.rst | 16 - 4 internal axes, any of which can be used to specify scale for a data series, 17 - a ``point_count`` (default 10) that applies to all data series added, 18 - 0 or more data series (you can add or remove them at any time), 26 - show or hide individual data series 39 Type (governs how a chart's data series are drawn) 51 - You "use" an axis by associating it with a data series, which happens when the 52 data series is created (more on this below). More than one data series can be 55 Point count (number of data points in all data series added to the chart) 61 - For SCATTER charts, this is the number of scatter-points in the data series. 64 Any number of data series [all …]
|
/lvgl-latest/src/widgets/chart/ |
D | lv_chart.h | 167 void lv_chart_remove_series(lv_obj_t * obj, lv_chart_series_t * series); 175 void lv_chart_hide_series(lv_obj_t * chart, lv_chart_series_t * series, bool hide); 183 void lv_chart_set_series_color(lv_obj_t * chart, lv_chart_series_t * series, lv_color_t color); 191 lv_color_t lv_chart_get_series_color(lv_obj_t * chart, const lv_chart_series_t * series);
|
D | lv_chart.c | 360 void lv_chart_remove_series(lv_obj_t * obj, lv_chart_series_t * series) in lv_chart_remove_series() argument 363 LV_ASSERT_NULL(series); in lv_chart_remove_series() 366 if(!series->y_ext_buf_assigned && series->y_points) lv_free(series->y_points); in lv_chart_remove_series() 367 if(!series->x_ext_buf_assigned && series->x_points) lv_free(series->x_points); in lv_chart_remove_series() 369 lv_ll_remove(&chart->series_ll, series); in lv_chart_remove_series() 370 lv_free(series); in lv_chart_remove_series() 375 void lv_chart_hide_series(lv_obj_t * chart, lv_chart_series_t * series, bool hide) in lv_chart_hide_series() argument 378 LV_ASSERT_NULL(series); in lv_chart_hide_series() 380 series->hidden = hide ? 1 : 0; in lv_chart_hide_series() 384 void lv_chart_set_series_color(lv_obj_t * chart, lv_chart_series_t * series, lv_color_t color) in lv_chart_set_series_color() argument [all …]
|
/lvgl-latest/tests/src/test_cases/ |
D | test_bindings.c | 77 lv_chart_series_t * series = lv_chart_add_series(chart, c3, LV_CHART_AXIS_PRIMARY_X); in create_ui() local 80 lv_chart_set_ext_y_array(chart, series, chart_y_array); in create_ui()
|
/lvgl-latest/tests/micropy_test/ |
D | micropy.py | 177 series = chart.add_series(c3, lv.chart.AXIS.PRIMARY_X) 181 chart.set_ext_y_array(series, chart_y_array)
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | gen_mipi.rst | 14 MIPI Alliance published a series of specifications related to display devices, including DBI (Displ…
|
/lvgl-latest/docs/details/integration/chip/ |
D | alif.rst | 21 `Alif E7 Devkit Gen2 <https://alifsemi.com/ensemble-e7-series/>`__; however, any project
|
/lvgl-latest/docs/intro/ |
D | introduction.rst | 130 Before v8 the last minor release of each major series was supported for 1 year.
|
/lvgl-latest/docs/details/main-components/ |
D | animation.rst | 314 You can create a series of related animations that are linked together using an
|
/lvgl-latest/docs/ |
D | Doxyfile | 1833 # file, i.e. a series of assignments. You only have to provide replacements,
|