Lines Matching refs:point
32 - `LV_CHART_TYPE_SCATTER` - X/Y chart drawing point's and lines between the points. .
60 2. Use `lv_chart_set_value_by_id(chart, ser, id, value)` where `id` is the index of the point you w…
64 Use `LV_CHART_POINT_NONE` as value to make the library skip drawing that point, column, or line seg…
95 ### Override default start point for series
96 If you want a plot to start from a point other than the default which is `point[0]` of the series, …
121 `lv_chart_set_cursor_pos(chart, cursor, &point)` sets the position of the cursor.
122 `pos` is a pointer to an `lv_point_t` variable. E.g. `lv_point_t point = {10, 20};`. If the chart i…
124 … id, &point_out)` gets the coordinate of a given point. It's useful to place the cursor at a given…
126 …d)` sticks the cursor at a point. If the point's position changes (new value or scrolling) the cur…
129 …ED` Sent when a new point is clicked pressed. `lv_chart_get_pressed_point(chart)` returns the zer…
141 - `id`: index of the point
142 - `value`: value of `id`th point
144 - `draw_area`: area of the point
150 - `id`: index of the point
151 - `value`: value of `id`th point
152 - `draw_area`: area of the point