feat(chart,calendar): two grammar corrections (#7340)

This commit is contained in:
Victor Wheeler
2024-11-29 09:42:39 -07:00
committed by GitHub
parent b05382e613
commit 1a0b6d313e
13 changed files with 17 additions and 15 deletions

View File

@@ -59,7 +59,7 @@ Month shown
-----------
To set the shown date, use
:cpp:expr:`lv_calendar_set_showed_date(calendar, year, month)`
:cpp:expr:`lv_calendar_set_month_shown(calendar, year, month)`
Highlighted days
----------------

View File

@@ -225,7 +225,7 @@ You have several options to set the Y-values for a data series:
the zero-based index of the point you wish to update.
3. Use :cpp:expr:`lv_chart_set_next_value(chart, series, value)`.
(See `Update modes`_ below.)
4. Set all points to a single Y-value with :cpp:expr:`lv_chart_set_all_value(chart, series, value)`.
4. Set all points to a single Y-value with :cpp:expr:`lv_chart_set_all_values(chart, series, value)`.
Use :c:macro:`LV_CHART_POINT_NONE` as value to make the library skip drawing
that point, column, or scatter-point.