MAIDR JavaScript API
    Preparing search index...

    Type Alias NivoLayerData

    NivoLayerData:
        | { kind: "bar"; points: BarPoint[] }
        | { kind: "stacked"; points: SegmentedPoint[][] }
        | { kind: "dodged"; points: SegmentedPoint[][] }
        | { kind: "line"; points: LinePoint[][]; stepDirection?: StepDirection }
        | { kind: "scatter"; points: ScatterPoint[] }
        | {
            kind: "pie";
            points: PiePoint[];
            dial: Pick<MaidrLayer, "startAngle" | "direction">;
        }
        | { kind: "heatmap"; points: HeatmapData }
        | { kind: "box"; points: BoxPoint[]; whiskerQuantiles?: [number, number] }

    Discriminated union of the layer payloads this adapter produces.

    Type Declaration