I am new to plotly and am trying to make a display using plotly dash. It is going good so far but i would like to change how the graph objects indicator looks. The data i am trying to should be near the center under normal conditions so instead of expanding from the left edge i would of the gauge i would like it to expand from the center of the gauge
this is what i have so far for code and i am not sure where to start
left_deviation_gauge = go.Figure(go.Indicator(
mode='gauge+number',
value=.1,
domain={'x': [0, 1], 'y': [0, 1]},
title={'text': 'Left Deviation'},
gauge={
'axis': {'range': [-20, 20], 'tickwidth': 1, 'tickcolor': "darkblue"},
}))