Hi,
I have a dashboard and there is a plotly indicator that includes “mode = “gauge+number+delta”” and it looks like this: ![Capture](https://us1.discourse-cdn.com/flex020/uploads/plot/original/2X/3/315f54a3fb15d7aa10f4ca0558c6a32018a74dc7.png)
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?
Eduardo
2
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