MPLAB® Harmony Graphics Suite > Graphics Library > Aria Graphics Library > Aria User Interface Library Interface > a) Functions > laCircularGaugeWidget_AddValueArc Function
MPLAB® Harmony Graphics Suite
laCircularGaugeWidget_AddValueArc Function

Value arcs are drawn inside the gauge from the same origin/center but are bound by the start and end value of the gauge. A value arc that exceeds the start or end value of the gauge will not be drawn.

C
LIB_EXPORT laResult laCircularGaugeWidget_AddValueArc(
    laCircularGaugeWidget* gauge, 
    int32_t startValue, 
    int32_t endValue, 
    uint32_t radius, 
    uint32_t thickness, 
    laScheme* scheme
);
Parameters
Parameters 
Description 
laCircularGaugeWidget* gauge 
the widget 
int32_t startAngle 
the start angle of the arc (relative to gauge starting angle) 
int32_t endAngle 
the end angle of the arc (relative to gauge starting angle) 
uint32_t radius 
the radius of the arc 
uint32_t thickness 
the fill thickness of the arc 
laScheme* scheme 
scheme used for drawing the arc 
Returns
MPLAB® Harmony Graphics Suite