@relisa/gui4vega - v0.1.0
    Preparing search index...

    Interface ImportedData

    Imported Vega content used to merge external JSON into the current specification.

    interface ImportedData {
        schema: Record<string, unknown>;
        datasets?: VegaDataset[];
        signals?: VegaSignal[];
    }
    Index

    Properties

    schema: Record<string, unknown>

    Required base Vega specification object.

    datasets?: VegaDataset[]

    Optional datasets to prepend to schema.data in Vega specification.

    • Datasets with the same name in the existing spec will be overwritten by imported ones.
    signals?: VegaSignal[]

    Optional signals to prepend to schema.signals in Vega specification.

    • Signals with the same name in the existing spec will be overwritten by imported ones.