Merge 4475c38140b99e773858fb24fa551f0b70b11ca2 into cf024086204412d8e7dc98918f00c962589a1240

This commit is contained in:
Kristoffer Carlsson 2016-09-15 12:58:42 +00:00 committed by GitHub
commit 980f954979

View File

@ -229,10 +229,11 @@ function pgf_axis(sp::Subplot, letter)
end end
if !(axis[:ticks] in (nothing, false, :none, :auto)) if !(axis[:ticks] in (nothing, false, :none, :auto))
push!(style, "$(letter)"*"tick = {$(join(get_ticks(axis),","))}") ticks = get_ticks(axis)
push!(style, string(letter, "tick = {", join(ticks[1],","), "}"))
push!(style, string(letter, "ticklabels = {", join(ticks[2],","), "}"))
end end
# return the style list and KW args # return the style list and KW args
style, kw style, kw
end end