Merge pull request #2167 from daschw/pyplot
always return positive linthresh for pyplot with log scales
This commit is contained in:
commit
bccf4ef563
@ -927,7 +927,7 @@ function py_set_scale(ax, sp::Subplot, axis::Axis)
|
|||||||
elseif scale == :log10
|
elseif scale == :log10
|
||||||
10
|
10
|
||||||
end
|
end
|
||||||
kw[Symbol(:linthresh,letter)] = NaNMath.min(1e-16, py_compute_axis_minval(sp, axis))
|
kw[Symbol(:linthresh,letter)] = NaNMath.max(1e-16, py_compute_axis_minval(sp, axis))
|
||||||
"symlog"
|
"symlog"
|
||||||
end
|
end
|
||||||
func(arg; kw...)
|
func(arg; kw...)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user