1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

docs minor typo fixes

This commit is contained in:
Gabor Kiss-Vamosi 2021-07-07 16:30:13 +02:00
parent 88c485949f
commit 84c00862ae
2 changed files with 13 additions and 13 deletions

View File

@ -138,7 +138,7 @@ The possible values of `dir` `LV_DIR_NONE/RIGHT/UP/LEFT/DOWN/HOR/VER/ALL` or th
- `LV_CHART_DRAW_PART_DIV_LINE_HOR`, `LV_CHART_DRAW_PART_DIV_LINE_VER` Used for each horizontal and vertical division lines. - `LV_CHART_DRAW_PART_DIV_LINE_HOR`, `LV_CHART_DRAW_PART_DIV_LINE_VER` Used for each horizontal and vertical division lines.
- `part`: `LV_PART_MAIN` - `part`: `LV_PART_MAIN`
- `id`: index of the line - `id`: index of the line
- `p1`, `p2`: (points of the line - `p1`, `p2`: points of the line
- `line_dsc` - `line_dsc`
- `LV_CHART_DRAW_PART_LINE_AND_POINT` Used on line and scatter charts for lines and points. - `LV_CHART_DRAW_PART_LINE_AND_POINT` Used on line and scatter charts for lines and points.
- `part`: `LV_PART_ITEMS` - `part`: `LV_PART_ITEMS`
@ -157,18 +157,18 @@ The possible values of `dir` `LV_DIR_NONE/RIGHT/UP/LEFT/DOWN/HOR/VER/ALL` or th
- `rect_dsc`: - `rect_dsc`:
- `sub_part_ptr`: pointer to the series - `sub_part_ptr`: pointer to the series
- `LV_CHART_DRAW_PART_CURSOR` Used on cursor lines and points. - `LV_CHART_DRAW_PART_CURSOR` Used on cursor lines and points.
- `part`: `LV_PART_CURSOR` - `part`: `LV_PART_CURSOR`
- `p1`, `p2`: points of the line - `p1`, `p2`: points of the line
- `line_dsc` - `line_dsc`
- `rect_dsc` - `rect_dsc`
- `draw_area`: area of the points - `draw_area`: area of the points
- `LV_CHART_DRAW_PART_TICK_LABEL` Used on tick lines and labels. - `LV_CHART_DRAW_PART_TICK_LABEL` Used on tick lines and labels.
- `part`: `LV_PART_TICKS` - `part`: `LV_PART_TICKS`
- `id`: axis - `id`: axis
- `value`: value of the tick - `value`: value of the tick
- `text`: `value` converted to decimal or `NULL` for minor ticks - `text`: `value` converted to decimal or `NULL` for minor ticks
- `line_dsc`, - `line_dsc`,
- `label_dsc`, - `label_dsc`,
See the events of the [Base object](/widgets/obj) too. See the events of the [Base object](/widgets/obj) too.

View File

@ -41,7 +41,7 @@ extern const lv_obj_class_t lv_led_class;
*/ */
typedef enum { typedef enum {
LV_LED_DRAW_PART_RECTANGLE, /**< The main rectangle*/ LV_LED_DRAW_PART_RECTANGLE, /**< The main rectangle*/
}lv_ledc_draw_part_type_t; }lv_led_draw_part_type_t;
/********************** /**********************
* GLOBAL PROTOTYPES * GLOBAL PROTOTYPES