Lines Matching full:with
24 - display flexible axes with ticks and text
25 - show precise locations of points or other locations on chart with cursors
47 2 Y axes and 2 X axes (the latter are used with SCATTER charts)
48 - All 4 axes come with each chart automatically (they do not have to be created).
51 - You "use" an axis by associating it with a data series, which happens when the
53 associated with each axis.
67 - When a data series is created, it comes with pre-allocated values array(s)
97 - The chart's background (with optional division lines)
130 (small circles or squares [with possibly-rounded corners]).
160 Charts start their life as LINE charts. You can change a chart's type with
172 with an array of ``chart->point_cnt`` ``int32_t`` Y-values, all set to
173 :c:macro:`LV_CHART_POINT_NONE`. (A SCATTER chart also comes with a pre-allocated array of
184 (primary or secondary) with one of the X-axis values.
187 you can do so with
203 setting values with ``lv_chart_set_...value_...()`` functions. See below
206 A pointer to the Y-value array of a series can be obtained with
223 chart with :cpp:expr:`lv_chart_refresh(chart)`.
228 4. Set all points to a single Y-value with :cpp:expr:`lv_chart_set_all_values(chart, series, value)…
252 The update mode can be changed with
276 You can specify the minimum and maximum values in Y-direction with
298 ``point[0]`` of the series, you can set an alternative index with the
308 With the help of :ref:`Scale <lv_scale>`, vertical and horizontal scales can be added
309 in a very flexible way. See the `examples 2 <#axis-ticks-and-labels-with-scrolling>`_
331 A cursor can be added with ``lv_chart_cursor_t * c1 = lv_chart_add_cursor(chart, color, dir);``.
339 is scrolled, the cursor moves with it.
347 (via a new value or via scrolling), the cursor moves with the point.