Indicator chart "number" formatting

Hi,
I have a dashboard and there is a plotly indicator that includes “mode = “gauge+number+delta”” and it looks like this: Capture

And my problem is: I wanna see the arrow as different color. So you see now, arrow is green. But I want to make its color change.

Is this possible? if it is, how can i do?

Hi bilallozdemir,

Yes you can speciffy the color using:

delta={'increasing':{'color': 'the color you want'}

for increasing Deltas and:

delta={'decreasing':{'color': 'the color you want'}

For decreasing.

You can find all properties here:

1 Like

Actually i solved the problem with this, couple hours ago.

fig.update_traces(delta_increasing_color="red",delta_decreasing_color="green")

Thank you so much.

1 Like