Lines Matching full:can

7 Charts can have:
29 - `LV_CHART_TYPE_NONE` Do not display any data. Can be used to hide the series.
34 You can specify the display type with `lv_chart_set_type(chart, LV_CHART_TYPE_...)`.
38 You can add any number of series to the charts by `lv_chart_add_series(chart, color, axis)`. This a…
39 `axis` can have the following values:
53 The value array of a series can be obtained with `lv_chart_get_y_array(chart, ser)`, which can be u…
55 …t_ext_x_array(chart, ser, value_array)` and `lv_chart_get_x_array(chart, ser)` can be used as well.
66 … ser, id, value)` and `lv_chart_set_next_value2(chart, ser, x_valuem y_value)` can be used as well.
70 `lv_chart_set_next_value` can behave in two ways depending on *update mode*:
74 The update mode can be changed with `lv_chart_set_update_mode(chart, LV_CHART_UPDATE_MODE_...)`.
77 The number of points in the series can be modified by `lv_chart_set_point_count(chart, point_num)`.…
85 You can specify the minimum and maximum values in y-direction with `lv_chart_set_range(chart, axis,…
86 `axis` can be `LV_CHART_AXIS_PRIMARY` (left axis) or `LV_CHART_AXIS_SECONDARY` (right axis).
91 The number of horizontal and vertical division lines can be modified by `lv_chart_set_div_line_coun…
96 …t from a point other than the default which is `point[0]` of the series, you can set an alternative
102 Ticks and labels can be added to the axis with `lv_chart_set_axis_tick(chart, axis, major_len, mino…
103 - `axis` can be `LV_CHART_AXIS_X/PRIMARY_Y/SECONDARY_Y`
112 The chart can be zoomed independently in x and y directions with `lv_chart_set_zoom_x(chart, factor…
118 A cursor can be added with `lv_chart_cursor_t * c1 = lv_chart_add_cursor(chart, color, dir);`.