Remove fillcolor for now

This commit is contained in:
Nicholas Bauer 2021-09-22 03:21:22 -04:00
parent 25eebcbe1a
commit ce5759923a

View File

@ -8,7 +8,7 @@ process_clims(f) = f
function get_clims(sp::Subplot, op = process_clims(sp[:clims]))::Tuple{Float64, Float64} function get_clims(sp::Subplot, op = process_clims(sp[:clims]))::Tuple{Float64, Float64}
zmin, zmax = Inf, -Inf zmin, zmax = Inf, -Inf
for series in series_list(sp) for series in series_list(sp)
if series[:colorbar_entry] && (series[:seriestype] != :shape || series[:fillcolor] === nothing) if series[:colorbar_entry] && series[:seriestype] != :shape
zmin, zmax = _update_clims(zmin, zmax, get_clims(series, op)...) zmin, zmax = _update_clims(zmin, zmax, get_clims(series, op)...)
end end
end end