MAIDR JavaScript API
    Preparing search index...

    How a chart's per-datum marks can be addressed once they are stamped.

    Two views of the same marks, because the traces that consume them want different shapes and getting it wrong costs the layer its highlighting in silence (#990): BarTrace and SegmentedTrace resolve a selector per mark, while ScatterTrace resolves one selector for a whole series.

    interface DatumMarks {
        points: string[][];
        series: string[];
    }
    Index

    Properties

    Properties

    points: string[][]

    One selector per mark, grouped by series.

    series: string[]

    One selector naming a whole series' marks, in series order.