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

    Interface VegaDataset

    Dataset representation for Vega specification used in the GUI4Vega application. Supports only inline datasets defined in the data property of the Vega spec.

    interface VegaDataset {
        name: string;
        values: Record<string, unknown>[];
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional properties of the dataset that may be present in the Vega specification.

    Index

    Properties

    Properties

    name: string

    The name of the dataset, which is used to reference it in the Vega specification. Must be unique within the spec.

    values: Record<string, unknown>[]

    Inline data values of the dataset.