Here is my code (basically you can find the same thing in html dash documents) I would like to make something similar to this: As you can see there are different segments which are named, and below the gauge there is also a segment name.
import dash_daq as daq
daq.Gauge(
color={"gradient":True,"ranges":{"green":[0,6],"yellow":[6,8],"red":[8,10]}},
value=2,
label='Default',
max=10,
min=0,
)
currently i have this