Iβm trying to implement a colorbar title using LaTeX formatting using the following code:
fig = go.Figure()
fig.add_trace(go.Scatter(x=x,
y=y,
mode='markers',
marker=dict(symbol='circle',size=12,line=dict(width=1,color='SlateGray'),
opacity=0.75,color=log_mbh,colorscale='Rainbow',showscale=True,
colorbar=dict(title=dict(text='$\alpha$',side='top'),thickness=50),
),
)
)
which results in the following plot:
Is there a reason why the LaTex colorbar title is vertical rather than on top? Is there a work-around for this problem?