Hi, Using the plotly Python to plot some plots and I’d like to change the color of the markers, (in my case on bar and scatter) on hover. I’d like to lighten the colors on hover, something similar to the sass color function lighten(). I’m really not sure how to go about it. Plotly doesn’t seem to give you control over the marker style on hover, at least not from searching the reference. I suppose I could grab all the markers with javascript, read their fill colors, and then reapply them on mouse in/out events, but that seems like too much work.
What’s the best approach here?