Cairo.jl icon indicating copy to clipboard operation
Cairo.jl copied to clipboard

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

Open s-baumann opened this issue 3 years ago • 1 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

s-baumann avatar Jan 17 '23 23:01 s-baumann

#349 ?

Mattriks avatar Feb 05 '23 06:02 Mattriks