Plotly 图形标题和标签为白色

Plotly graph title and labels are off white color

我使用下面的代码生成了下面的绘图:

x=['a','b','c','d']

y=['1','2','3','4']

df = pd.DataFrame({'x':x, 'y':y})

fig=df.iplot(kind= 'scatter', size =9,mode='markers+text',opacity=0.8, colors=['blue'], yTitle= 'Count',xTitle = 'x', asFigure=True)

fig.update_layout(height=300, width=500, title_text="Plot X on Y",barmode='stack',template='plotly_dark',  plot_bgcolor='rgb(17,17,17)',
    legend = dict(bgcolor = 'rgb(17,17,17)', orientation="h",yanchor="bottom", x=1,y=1.02, xanchor='right'), paper_bgcolor ='rgb(12,12,12)', xaxis = {'showgrid': False, 'zeroline':True}, yaxis = {'showgrid': False})

图表如下图标题,xaxis,yaxis label titles 都显示为暗色。我希望它们是鲜明的白色。

您可以尝试多种主题。如果你使用'solar',你会得到你想要的颜色。主题来源here可以找到,供大家参考。

fig=df.iplot(kind= 'scatter', size =9,
             mode='markers+text',
             opacity=0.8,
             colors=['blue'],
             yTitle= 'Count',
             xTitle = 'x',
             asFigure=True,
             theme='solar')