在 Plotly 中更改标题字体大小

Change title font size in Plotly

我正在尝试使用 Plotly 库更新绘图上的标题字体大小,但它不起作用。这就是我定义布局的方式:

y_layout = {
        'title': 'y / y_hat comparison',
        'shapes': y_shapes,
        'title_font_size': 6,
    }
y_df.iplot(kind='scatter', layout=y_layout)

它正确设置了标题和形状,但不是字体大小。

我想你可以使用字典设置标题字体大小:

y_layout = {
        'title': 'y / y_hat comparison',
        'shapes': y_shapes,
        'font': {'size': 6},
    }