Hi,
Has anyone used the URL property described here:
to load data from an external (public) URL into a Vega Lite specification within the Airtable app? This is the kind of syntax that works externally in the Vega Lite editor:
"data": {"url": "https://vega.github.io/vega-datasets/data/unemployment-across-industries.json"}
I’d like to include some external annotation data in a chart (and join it using a lookup, which also works OK in the Vega Lite editor), but I’m having trouble getting it working. I know the Vega Lite block binds the table data at runtime, but I’m not quite sure whether it’s able to make external requests or not.
It doesn’t throw an error when I do it, but on the other hand the error message when you put in a nonexistent field name says this:
fieldname is not a valid transform name, inline data name, or field name from the Imported table table
which sort of implies that those are the only valid data sources. FWIW the binding of the table data happens late enough that you can successfully do transforms on the data.