set default to :circle instead of :auto for marker = true

This commit is contained in:
Daniel Schwabeneder 2019-04-12 09:42:19 +02:00
parent 5506c0543c
commit b6b00c843a

View File

@ -739,7 +739,7 @@ function processMarkerArg(plotattributes::KW, arg)
# bool # bool
elseif typeof(arg) <: Bool elseif typeof(arg) <: Bool
plotattributes[:markershape] = arg ? :auto : :none plotattributes[:markershape] = arg ? :circle : :none
# markersize # markersize
elseif allReals(arg) elseif allReals(arg)