Very new to plotly, so upfront apology if this is trivial. Iโm using python plotly with spyder:
import plotly.graph_objects as go
fig = go.Figure(data=[go.Surface(z=z, x=x, y=y)])
The z values are all negative (itโs just how the function works). I want to use a different color scale:
fig = go.Figure(data=[go.Surface(z=z, x=x, y=y, colorscale='reds')])
but the colors are the reverse from what I want. Max value is dark red and min value is white. Iโd like to reverse. I know I can negate the z values to get the color scheme I want, but then the plot is inverted and I have a difficult time rotating it the way I want. Iโd rather somehow reverse the colors. Is this readily done?