JuliaGraphics / Cairo.jl

Bindings to the Cairo graphics library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Saving gadfly plot results in a pdf with messed up axis labels.

s-baumann opened this issue · comments

In trying to save a plot in Gadfly the axis labels end up being messed up. The following code produces a figure with messed up labels (which is below).

using DataFrames
using Gadfly, Cairo, Fontconfig
my_frame = DataFrame(time=1917:2018, price=1.02.^(0:101))
plt = plot(my_frame, x=:time, y=:price, Geom.line)
img = PDF("C:\\temp\\image.pdf", 20cm, 20cm)
draw(img, plt)

image.pdf

I think the issue is in Cairo as the figure looks ok within VS Code