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

    Interface VegaLiteFacetDef

    Top-level facet operator definition.

    Two shapes exist in Vega-Lite:

    • Row/column faceting: { row?: {field}, column?: {field} }.
    • Wrapped faceting: a single field definition ({ field, type }) combined with the top-level columns property.
    interface VegaLiteFacetDef {
        row?: VegaLiteChannelDef;
        column?: VegaLiteChannelDef;
        field?: string;
        type?: string;
        title?: string;
    }
    Index

    Properties

    field?: string
    type?: string
    title?: string