在使用Plotly時,可以使用Layout類來定制圖表的布局和設計。Layout類可以用來設置圖表標題、坐標軸標簽、圖例、背景顏色等屬性。以下是Layout類的一些常用屬性和用法示例:
import plotly.graph_objects as go
fig = go.Figure(data=data, layout=go.Layout(title='My Plot'))
layout = go.Layout(xaxis=dict(title='X-axis label'), yaxis=dict(title='Y-axis label'))
layout = go.Layout(legend=dict(x=0, y=1, bgcolor='rgba(255, 255, 255, 0.5)'))
layout = go.Layout(plot_bgcolor='rgb(230, 230, 230)', paper_bgcolor='rgb(250, 250, 250)', margin=dict(l=50, r=50, t=50, b=50))
layout = go.Layout(width=800, height=600, margin=dict(l=50, r=50, t=50, b=50))
通過使用Layout類的屬性,可以輕松定制和美化Plotly圖表的外觀和布局。更多Layout類的屬性和用法可以參考Plotly官方文檔。