We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thank @jkrumbiegel for fixing the exponents displaying problem in #2321. It shows the right font when the axis scale is set to logarithmic.
But for regular scales, the font of the exponents is still the default font after I changed the font. The MWE is as follows:
p=5000000 .+rand(40).*3000000 q=collect(1:40).*100000 f=Figure(fonts=(;regular="CMU")) ax1=Axis(f[1,1],title="regular scales") scatterlines!(ax1,q,p) ax2=Axis(f[2,1],title="log scales",yscale=log10,xscale=log10) scatterlines!(ax2,q,p) f
The text was updated successfully, but these errors were encountered:
Oh good point, for those we would have to work around Showoff.showoff I think, which we use to format normal numeric ticks.
Sorry, something went wrong.
export_raw
Successfully merging a pull request may close this issue.
Thank @jkrumbiegel for fixing the exponents displaying problem in #2321. It shows the right font when the axis scale is set to logarithmic.
But for regular scales, the font of the exponents is still the default font after I changed the font. The MWE is as follows:
The text was updated successfully, but these errors were encountered: