-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
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
Text too big on plots #405
Comments
It's a Safari bug that I've yet to invent a work around for. In Safari -> Preferences -> Advanced, there's an option "Never use font sizes smaller than". If you uncheck that, it should look correct. This feature is supposed prevent fonts smaller than 9pt (or whatever it's set to), but it's a broken implementation that doesn't take into account how units work in SVG. Gadfly uses millimeters, and the result is that it prevents fonts less that 9mm, which is 25pt, which is of course really big. |
OK, thanks! |
@dcjones You could try reporting it on Apple's bugtracker if you haven't already. They're usually pretty responsive. |
Good idea. I just did so. |
For what it's worth, this can occur in Firefox as well (I'm using version 38.0.5 on OS X 10.10.3) with effectively the same workaround (Preferences / Content / Fonts & Colors / Advanced / Minimum Font Size = None). I don't know if they're using the same SVG backend or if it's an independent issue. I'm also including the phrase "large text" in this comment to make this page easier to find for other people with the same issue (I didn't find it until I searched for "big text"). |
Just wondering why the text is always too big:
julia> using Gadfly
julia> plot(x=rand(10), y=rand(10))
The text was updated successfully, but these errors were encountered: