Lines Matching refs:axis
51 - You "use" an axis by associating it with a data series, which happens when the
53 associated with each axis.
59 - For LINE- and BAR-charts, this is the number of points on the X axis.
168 :cpp:expr:`lv_chart_add_series(chart, color, axis)`.
171 which remembers the ``color`` and ``axis`` you specified, and comes pre-allocated
176 ``axis`` specifies which axis is used to scale its values, and may be one of the following:
178 - :cpp:enumerator:`LV_CHART_AXIS_PRIMARY_Y`: Left axis
179 - :cpp:enumerator:`LV_CHART_AXIS_SECONDARY_Y`: Right axis
180 - :cpp:enumerator:`LV_CHART_AXIS_PRIMARY_X`: Bottom axis
181 - :cpp:enumerator:`LV_CHART_AXIS_SECONDARY_X`: Top axis
183 When adding a data series to a SCATTER chart, bit-wise OR your selected Y axis
184 (primary or secondary) with one of the X-axis values.
277 :cpp:expr:`lv_chart_set_range(chart, axis, min, max)`. ``axis`` can be
278 :cpp:enumerator:`LV_CHART_AXIS_PRIMARY_Y` (left Y axis) or
279 :cpp:enumerator:`LV_CHART_AXIS_SECONDARY_Y` (right Y axis).
309 in a very flexible way. See the `examples 2 <#axis-ticks-and-labels-with-scrolling>`_