Lines Matching refs:series

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
65 - After a chart is created, it initially contains no data series. You have to add them.
66 - You can add and remove data series at any time during a chart's life.
67 - When a data series is created, it comes with pre-allocated values array(s)
74 - If desired, you can tell a data series to instead use a value array you
78 - That data series will continue to use *your* array from that time onward.
79 - The values in your array must remain available through the life of that data series.
98 - Each data series:
100 - Earliest data series added appears on top.
101 - For a SCATTER chart, within each series, points later in the sequence will appear
117 *Padding* makes the series area smaller. For BAR charts ``pad_column`` sets the
118 space between bars in the same data series.
121 - :cpp:enumerator:`LV_PART_ITEMS` Refers to the LINE or BAR data series.
127 bars. ``pad_column`` sets the space between columns in the same data series.
163 Data series
166 You can add any number of data series to a chart by using
183 When adding a data series to a SCATTER chart, bit-wise OR your selected Y axis
189 :cpp:expr:`lv_chart_set_ext_y_array(chart, series, value_array)`.
195 the array's pointer is saved in the series so its contents need to remain available
196 for the life of the series, i.e. the array needs to be global, static or dynamically
206 A pointer to the Y-value array of a series can be obtained with
207 :cpp:expr:`lv_chart_get_y_array(chart, series)`. This is true whether you are using
212 - :cpp:expr:`lv_chart_set_ext_x_array(chart, series, value_array)` and
213 - :cpp:expr:`lv_chart_get_x_array(chart, series)`
220 You have several options to set the Y-values for a data series:
224 2. Use :cpp:expr:`lv_chart_set_value_by_id(chart, series, id, value)` where ``id`` is
226 3. Use :cpp:expr:`lv_chart_set_next_value(chart, series, value)`.
228 4. Set all points to a single Y-value with :cpp:expr:`lv_chart_set_all_values(chart, series, value)…
235 - :cpp:expr:`lv_chart_set_value_by_id2(chart, series, id, x_value, y_value)` and
236 - :cpp:expr:`lv_chart_set_next_value2(chart, series, x_value, y_value)`
258 The number of points in the series can be modified by
261 value array is assigned to a series, so you also need to be sure any external
294 Override default start point for series
298 ``point[0]`` of the series, you can set an alternative index with the
299 function :cpp:expr:`lv_chart_set_x_start_point(chart, series, id)` where ``id`` is
341 :cpp:expr:`lv_chart_get_point_pos_by_id(chart, series, id, &point_out)` gets the
345 :cpp:expr:`lv_chart_set_cursor_point(chart, cursor, series, point_id)` places the