Hi,
I am trying to change the color of each line/marker inside the plot.
I could only find a way to set all of them, but not individually. Snippet:
for i in range(len(fig.data)):
if ((fig.data[i].y > limits["max"]) | (fig.data[i].y < limits["min"])).any():
fig.data[i].marker.color = "red"
Any workaround?
Many thanks!