MAIDR Documentation - v3.65.0
    Preparing search index...

    Minimal Vega-Lite top-level specification shape.

    Covers single-view, layered (layer), and composite (hconcat / vconcat / concat) specs. Faceted (facet) and repeated (repeat) specs are recognised but not yet supported by the adapter.

    interface VegaLiteSpec {
        $schema?: string;
        title?: string | { text?: string; subtitle?: string };
        description?: string;
        data?: unknown;
        mark?: string | { type: string };
        encoding?: VegaLiteEncoding;
        layer?: VegaLiteSpec[];
        hconcat?: VegaLiteSpec[];
        vconcat?: VegaLiteSpec[];
        concat?: VegaLiteSpec[];
        facet?: unknown;
        spec?: VegaLiteSpec;
        repeat?: unknown;
    }
    Index

    Properties

    $schema?: string
    title?: string | { text?: string; subtitle?: string }
    description?: string
    data?: unknown
    mark?: string | { type: string }
    encoding?: VegaLiteEncoding
    layer?: VegaLiteSpec[]
    hconcat?: VegaLiteSpec[]
    vconcat?: VegaLiteSpec[]
    concat?: VegaLiteSpec[]
    facet?: unknown
    repeat?: unknown