pgfplots aspect_ratio

This commit is contained in:
Thomas Breloff 2016-05-11 09:18:40 -04:00
parent 90c2202f6e
commit 44d1cdc2b2

View File

@ -2,6 +2,7 @@
supportedArgs(::PGFPlotsBackend) = [
# :annotation,
:aspect_ratio,
# :axis,
:background_color,
# :color_palette,
@ -339,11 +340,15 @@ function _pgfplots_get_axis_kwargs(d)
axisargs[:ymax] = d[:ylims][2]
end
if d[:grid] == true
axisargs[:style] *= "grid = major"
axisargs[:style] *= "grid = major,"
elseif d[:grid] == false
end
if d[:aspect_ratio] == :equal || d[:aspect_ratio] == 1
axisargs[:axisEqual] = "true"
end
if ((d[:legend] != :none) || (d[:legend] != :best)) && (d[:legend] in keys(_pgfplots_legend_pos))
axisargs[:legendPos] = _pgfplots_legend_pos[d[:legend]]
end