1import plotly.graph_objects as go
2
3fig = go.Figure()
4
5fig.update_layout(
6 title="Plot Title",
7 xaxis_title="x Axis Title",
8 yaxis_title="y Axis Title",
9 font=dict(
10 family="Courier New, monospace",
11 size=18,
12 color="#7f7f7f"
13 )
14)
15
16fig.show()