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

    Interface ExportedData

    Exported Vega content with separated specification, datasets, and signals. Datasets and signals that are present in the attributes are not included in the specification.

    interface ExportedData {
        spec: string;
        datasets: string[];
        signals: string[];
    }
    Index

    Properties

    Properties

    spec: string

    The Vega specification as a JSON string, with the selected datasets and signals removed.

    datasets: string[]

    An array of JSON strings representing the selected datasets that were extracted from the specification. Each string contains the dataset name and its values.

    signals: string[]

    An array of JSON strings representing the selected signals that were extracted from the specification. Each string contains the signal name and its value.