Skip to content

Instantly share code, notes, and snippets.

@robdmc
Last active August 2, 2023 20:49
Show Gist options
  • Save robdmc/2302e5b84827835313a0a7adf2ac8ace to your computer and use it in GitHub Desktop.
Save robdmc/2302e5b84827835313a0a7adf2ac8ace to your computer and use it in GitHub Desktop.
holoviews font size control
c1 = dfj.hvplot.scatter(
"x_col_name",
"y_col_name",
xlabel="My x label",
ylabel="My y label",
).options(
logx=True,
logy=True,
color="red",
fontsize={
"title": 15,
"labels": 15,
"xticks": 15,
"yticks": 15,
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment