From 14b3852060155122db6252aadb65cd65929bcf6d Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Fri, 4 Jun 2021 22:09:51 +0200 Subject: [PATCH] add :symmetric docs --- src/arg_desc.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/arg_desc.jl b/src/arg_desc.jl index 67411988..3bf2da5f 100644 --- a/src/arg_desc.jl +++ b/src/arg_desc.jl @@ -137,7 +137,11 @@ const _arg_desc = KW( # axis args :guide => "String. Axis guide (label).", :guide_position => "Symbol. Position of axis guides: :top, :bottom, :left or :right", -:lims => "NTuple{2,Number} or Symbol. Force axis limits. Only finite values are used (you can set only the right limit with `xlims = (-Inf, 2)` for example). `:round` widens the limit to the nearest round number ie. [0.1,3.6]=>[0.0,4.0]", +:lims => """ + NTuple{2,Number} or Symbol. Force axis limits. Only finite values are used (you can set only the right limit with `xlims = (-Inf, 2)` for example). + `:round` widens the limit to the nearest round number ie. [0.1,3.6]=>[0.0,4.0] + `:symmetric` sets the limits to be symmetric around zero. + """, :ticks => "Vector of numbers (set the tick values), Tuple of (tickvalues, ticklabels), or `:auto`", :scale => "Symbol. Scale of the axis: `:none`, `:ln`, `:log2`, `:log10`", :rotation => "Number. Degrees rotation of tick labels.",