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

    Interface SubplotSummary

    Summary of a single subplot in a multi-panel figure, used to give users an at-a-glance list of what's available before they navigate in.

    interface SubplotSummary {
        index: number;
        title: string;
        traceTypes: string[];
        isActive: boolean;
    }
    Index

    Properties

    index: number

    1-based visual index (top-left = 1, reading order).

    title: string

    Layer title for the subplot, or empty string if not available.

    traceTypes: string[]

    Trace type label(s) for the subplot's layers.

    isActive: boolean

    True if this is the subplot the user is currently focused on.