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

    Type Alias FigureState

    FigureState:
        | { empty: true; type: "figure" }
        | {
            empty: false;
            type: "figure";
            title: string;
            subtitle: string;
            caption: string;
            size: number;
            index: number;
            subplot: SubplotState;
            traceTypes: string[];
            highlight: HighlightState;
        }

    State for the top-level figure containing metadata and current subplot state.