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

    Interface D3PanelScope

    Panel scope for multi-panel (faceted / composed) binds.

    When a binder extracts one panel of a multi-panel figure, its extraction root is the panel element — not the outer SVG. Emitted selectors must still be anchored to the OUTER SVG's page-unique id (MAIDR resolves selectors via document.querySelector) and additionally narrowed to the panel via the data-maidr-panel attribute, so panel A's selector can never match panel B's marks.

    interface D3PanelScope {
        container: Element;
        panelIndex: number;
    }
    Index

    Properties

    container: Element

    The outer SVG (or container) whose id anchors all emitted selectors.

    panelIndex: number

    The index stamped on the panel element as data-maidr-panel.