Last active
August 2, 2023 20:49
-
-
Save robdmc/2302e5b84827835313a0a7adf2ac8ace to your computer and use it in GitHub Desktop.
holoviews font size control
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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