From cab6ca3ef0890688b06a5abab4ac29fce90ec21a Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Wed, 13 Mar 2019 13:40:05 +0100 Subject: [PATCH] default to radius 0 at center for polar plots --- src/axes.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/axes.jl b/src/axes.jl index 1b2f693b..c2784d5c 100644 --- a/src/axes.jl +++ b/src/axes.jl @@ -502,7 +502,7 @@ function axis_limits(axis::Axis, should_widen::Bool = default_should_widen(axis) amin, amax = 0, 2pi elseif lims == :auto #widen max radius so ticks dont overlap with theta axis - amin, amax + 0.1 * abs(amax - amin) + 0, amax + 0.1 * abs(amax - amin) else amin, amax end