Hello
How can I change the outline circle of the gauge, for example change the color or remove it?
See picture below (the grey circle)
Thank you
Hello
How can I change the outline circle of the gauge, for example change the color or remove it?
See picture below (the grey circle)
Thank you
Hi !
You can change meter border color by using :
lv_obj_set_style_border_color(meter, lv_color_hex(0xFF0000), LV_PART_MAIN);
Replace 0xFF0000 by the color of your choice.
I hope it will help you .