David Anthoff
David Anthoff
You can set the `background` property at the top level spec like this: ```julia @vlplot(background="#fff") + [p1 p2] ``` I really should document at some point how the composition works...
Blocked by https://github.com/vega/vega/issues/2269, at least for the scenario where we use the node stack to create the PNGs. We could implement this for the version that uses Cairo.jl/Rsvg.jl right now,...
I think for the maps yes, but for the other figures there are still a whole bunch we don't have (because they added more, and because I think also they...
We used to have a function `checkplot` that checked the JSON spec that is generated from Julia against the vega-lite JSON schema, and that uncovered problems. But, I kind of...
When you save the plot with `plot |> save("foo.pdf")` it will show the javascript error message. But agreed, for interactive work that is not great at all... My workflow is...
The closest thing we have is https://github.com/tkf/VegaStreams.jl, but it might only support adding additional data to existing data? Not sure.
Can you describe your scenario a bit more? What kind of UI would you want to use for your scenario?
It turns out that we had support for this for a long time, I just wasn't aware of it :) Try this: ````julia using FileIO load(File(format"CSV", "foo.csv.gz")) |> DataFrame ````...
Not at the moment. I think there are two levels of support we could add: 1) Add support for `savestreaming` from FileIO.jl, and then it might work with some external...