Home
last modified time | relevance | path

Searched refs:axis (Results 1 – 12 of 12) sorted by relevance

/lvgl-latest/src/others/xml/parsers/
Dlv_xml_chart_parser.c76 const char * axis = lv_xml_get_value_of(attrs, "axis"); in lv_xml_chart_series_create() local
78 chart_axis_to_enum(axis)); in lv_xml_chart_series_create()
149 lv_chart_axis_t axis = chart_axis_to_enum(lv_xml_get_value_of(attrs, "axis")); in lv_xml_chart_axis_apply() local
158 lv_chart_set_range(chart, axis, min_val, max_val); in lv_xml_chart_axis_apply()
/lvgl-latest/docs/details/widgets/
Dchart.rst51 - 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
[all …]
/lvgl-latest/src/widgets/chart/
Dlv_chart.h95 void lv_chart_set_range(lv_obj_t * obj, lv_chart_axis_t axis, int32_t min, int32_t max);
160 lv_chart_series_t * lv_chart_add_series(lv_obj_t * obj, lv_color_t color, lv_chart_axis_t axis);
Dlv_chart.c132 void lv_chart_set_range(lv_obj_t * obj, lv_chart_axis_t axis, int32_t min, int32_t max) in lv_chart_set_range() argument
139 switch(axis) { in lv_chart_set_range()
157 LV_LOG_WARN("Invalid axis: %d", axis); in lv_chart_set_range()
298 lv_chart_series_t * lv_chart_add_series(lv_obj_t * obj, lv_color_t color, lv_chart_axis_t axis) in lv_chart_add_series() argument
346 ser->x_axis_sec = axis & LV_CHART_AXIS_SECONDARY_X ? 1 : 0; in lv_chart_add_series()
347 ser->y_axis_sec = axis & LV_CHART_AXIS_SECONDARY_Y ? 1 : 0; in lv_chart_add_series()
/lvgl-latest/examples/others/gridnav/
Dindex.rst26 Grid navigation for only one axis
/lvgl-latest/tests/src/test_files/fonts/noto/
DREADME.txt6 Noto Sans SC is a variable font with this axis:
/lvgl-latest/docs/details/base-widget/layouts/
Dflex.rst90 on the main axis. E.g. flush the items to the right on
94 on the cross axis. E.g. if the items have different height, align them
/lvgl-latest/docs/details/integration/driver/
Dwayland.rst88 * an ENCODER connected to Wayland pointer axis events
/lvgl-latest/docs/
DCODING_STYLE.rst164 * @param main_place where to place items on main axis (in their track).
166 * @param cross_place where to place item in track on cross axis.
DCHANGELOG.rst114 - **feat(gridnav): single axis movement flags** `6044 <https://github.com/lvgl/lvgl/pull/6044>`__
173 - **perf(vg_lite): invert the vector font Y axis coordinate in advance** `6353 <https://github.com/…
/lvgl-latest/src/drivers/wayland/
Dlv_wayland.c647 uint32_t time, uint32_t axis, wl_fixed_t value) in pointer_handle_axis() argument
659 if(axis == 0) { in pointer_handle_axis()
674 .axis = pointer_handle_axis,
/lvgl-latest/src/libs/thorvg/
DtvgLottieBuilder.cpp91 auto axis = -deg2rad(axisDeg); in _skew() local
92 float cosVal = cosf(axis); in _skew()
93 float sinVal = sinf(axis); in _skew()