Closed brucala closed 1 year ago
In the composition of a Transform with a Facet, the transform disappears:
Transform
Facet
transform = Transform( fold=stations, as=[:Station, :snow_depth], ) facet = Facet(row=:Station) * Encoding(x="monthdate(date):O") transform * facet
results in:
{ "mark": { "tooltip": true } }, "spec": { "encoding": { "x": { "timeUnit": "monthdate", "field": "date", "type": "ordinal" } }, "width": 500 }, "facet": { "row": { "field": "Station" } } }
fixed by https://github.com/brucala/Deneb.jl/commit/23b77fce3e0d794228b276ccc641c68bd5c35edf
In the composition of a
Transform
with aFacet
, the transform disappears:results in: