Spaces:
Sleeping
Sleeping
File size: 842 Bytes
8e17be6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | import plotly.io as pio
def register_plotly_theme():
pio.templates["site_theme"] = pio.templates["plotly_white"]
pio.templates["site_theme"].layout.update(
font=dict(
family="Helvetica Neue, Helvetica, Arial, sans-serif",
size=16,
color="#111"
),
title=dict(
font=dict(
size=20,
family="Helvetica Neue, Helvetica, Arial, sans-serif",
)
)
)
pio.templates["site_theme"].layout.update(
xaxis=dict(
title_font=dict(size=14),
tickfont=dict(size=12)
),
yaxis=dict(
title_font=dict(size=14),
tickfont=dict(size=12)
),
legend=dict(
font=dict(size=13)
)
)
pio.templates.default = "site_theme"
|