allow type recipes for numbers in surfaces
This commit is contained in:
parent
c32c7fda58
commit
f8d36363b4
@ -216,7 +216,10 @@ function _apply_type_recipe(plotattributes, v::AbstractArray, letter)
|
|||||||
end
|
end
|
||||||
|
|
||||||
# special handling for Surface... need to properly unwrap and re-wrap
|
# special handling for Surface... need to properly unwrap and re-wrap
|
||||||
_apply_type_recipe(plotattributes, v::Surface{<:AMat{<:DataPoint}}) = v
|
_apply_type_recipe(
|
||||||
|
plotattributes,
|
||||||
|
v::Surface{<:AMat{<:Union{AbstractFloat, Integer, Missing}}},
|
||||||
|
) = v
|
||||||
function _apply_type_recipe(plotattributes, v::Surface)
|
function _apply_type_recipe(plotattributes, v::Surface)
|
||||||
ret = _apply_type_recipe(plotattributes, v.surf)
|
ret = _apply_type_recipe(plotattributes, v.surf)
|
||||||
if typeof(ret) <: Formatted
|
if typeof(ret) <: Formatted
|
||||||
@ -229,7 +232,11 @@ end
|
|||||||
# don't do anything vectors of datapoints and for nothing
|
# don't do anything vectors of datapoints and for nothing
|
||||||
_apply_type_recipe(plotattributes, v::Nothing, letter) = v
|
_apply_type_recipe(plotattributes, v::Nothing, letter) = v
|
||||||
_apply_type_recipe(plotattributes, v::AbstractArray{<:MaybeString}, letter) = v
|
_apply_type_recipe(plotattributes, v::AbstractArray{<:MaybeString}, letter) = v
|
||||||
_apply_type_recipe(plotattributes, v::AbstractArray{<:Union{Real, Nothing}}, letter) = v
|
_apply_type_recipe(
|
||||||
|
plotattributes,
|
||||||
|
v::AbstractArray{<:Union{AbstractFloat, Integer, Missing}},
|
||||||
|
letter,
|
||||||
|
) = v
|
||||||
|
|
||||||
# axis args before type recipes should still be mapped to all axes
|
# axis args before type recipes should still be mapped to all axes
|
||||||
function _preprocess_axis_args!(plotattributes)
|
function _preprocess_axis_args!(plotattributes)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user