Searched refs:series (Results 1 – 9 of 9) sorted by relevance
/lvgl-3.7.0/docs/widgets/extra/ |
D | chart.md | 15 …* (for the division lines) related style properties. *Padding* makes the series area smaller. For … 17 - `LV_PART_ITEMS` Refers to the line or bar series. 29 - `LV_CHART_TYPE_NONE` Do not display any data. Can be used to hide the series. 37 ### Data series 38 You can add any number of series to the charts by `lv_chart_add_series(chart, color, axis)`. This a… 48 …t_ext_y_array(chart, ser, value_array)` makes the chart use an external array for the given series. 49 …_array[num_points]`. The array size needs to be large enough to hold all the points of that series. 53 The value array of a series can be obtained with `lv_chart_get_y_array(chart, ser)`, which can be u… 58 You have several options to set the data of series: 77 The number of points in the series can be modified by `lv_chart_set_point_count(chart, point_num)`.… [all …]
|
/lvgl-3.7.0/examples/widgets/chart/ |
D | lv_example_chart_4.py | 16 for i in range(len(series)): 18 chart.get_point_pos_by_id(series[i], id, p) 71 series = [ser1,ser2] variable
|
/lvgl-3.7.0/src/extra/widgets/chart/ |
D | lv_chart.h | 282 void lv_chart_remove_series(lv_obj_t * obj, lv_chart_series_t * series); 290 void lv_chart_hide_series(lv_obj_t * chart, lv_chart_series_t * series, bool hide); 298 void lv_chart_set_series_color(lv_obj_t * chart, lv_chart_series_t * series, lv_color_t color);
|
D | lv_chart.c | 384 void lv_chart_remove_series(lv_obj_t * obj, lv_chart_series_t * series) in lv_chart_remove_series() argument 387 LV_ASSERT_NULL(series); in lv_chart_remove_series() 390 if(!series->y_ext_buf_assigned && series->y_points) lv_mem_free(series->y_points); in lv_chart_remove_series() 391 if(!series->x_ext_buf_assigned && series->x_points) lv_mem_free(series->x_points); in lv_chart_remove_series() 393 _lv_ll_remove(&chart->series_ll, series); in lv_chart_remove_series() 394 lv_mem_free(series); in lv_chart_remove_series() 399 void lv_chart_hide_series(lv_obj_t * chart, lv_chart_series_t * series, bool hide) in lv_chart_hide_series() argument 402 LV_ASSERT_NULL(series); in lv_chart_hide_series() 404 series->hidden = hide ? 1 : 0; in lv_chart_hide_series() 408 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-3.7.0/docs/get-started/platforms/ |
D | espressif.md | 2 # Espressif (ESP32 chip series)
|
/lvgl-3.7.0/docs/intro/ |
D | index.md | 98 Before v8 the last minor release of each major series was supported for 1 year.
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 1230 - fix(chart) don't draw series lines with < 1 points [`655f42b`](https://github.com/lvgl/lvgl/co… 1279 - fix(chart) fix crash if no series are added [`c728b5c`](https://github.com/lvgl/lvgl/commit/c728b… 1555 - fix(chart) fix crash if no series are added 1922 - Add `lv_chart_set_point_id()` function - Set an individual point value in the chart series direct… 1924 - Add `lv_chart_get_point_id()` function - Get an individual point value in the chart series direct… 1925 …ed` bit field to `lv_chart_series_t` structure - it's true if external buffer is assigned to series 1926 - Add `lv_chart_set_series_axis()` to assign series to primary or secondary axis 2078 …series. bg_opa > 0 draws an area in LINE mode. `LV_CHART_PART_SERIES_BG` also added to set a diffe…
|
/lvgl-3.7.0/docs/overview/ |
D | drawing.md | 176 …void * sub_part_ptr; // A pointer the identifies something in the part. E.g. chart series.
|
/lvgl-3.7.0/scripts/ |
D | Doxyfile | 1832 # file, i.e. a series of assignments. You only have to provide replacements,
|