From 2a9b9e6e1119db8294fdc63d93548fe06e2b6aa2 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Wed, 29 Sep 2021 13:30:44 +0200 Subject: [PATCH] Update arc.md --- docs/widgets/core/arc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/core/arc.md b/docs/widgets/core/arc.md index aa54408f3..7f20acc7d 100644 --- a/docs/widgets/core/arc.md +++ b/docs/widgets/core/arc.md @@ -20,7 +20,7 @@ Larger padding makes it larger, smaller padding makes it smaller. A new value can be set using `lv_arc_set_value(arc, new_value)`. The value is interpreted in a range (minimum and maximum values) which can be modified with `lv_arc_set_range(arc, min, max)`. -The default range is 1..100. +The default range is 0..100. The indicator arc is drawn on the main part's arc. This if the value is set to maximum the indicator arc will cover the entire "background" arc. To set the start and end angle of the background arc use the `lv_arc_set_bg_angles(arc, start_angle, end_angle)` functions or `lv_arc_set_bg_start/end_angle(arc, angle)`.