Merge pull request #389 from odow/patch-1

Legend location in subplot
This commit is contained in:
Tom Breloff 2016-07-14 13:52:37 -04:00 committed by GitHub
commit 1f0f89f83c

View File

@ -805,6 +805,7 @@ function convertLegendValue(val::Symbol)
end
convertLegendValue(val::Bool) = val ? :best : :none
convertLegendValue(val::Void) = :none
convertLegendValue(v::AbstractArray) = map(convertLegendValue, v)
# -----------------------------------------------------------------------------