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

    Interface ExtremaTarget

    Represents a single extrema target that can be navigated to

    interface ExtremaTarget {
        label: string;
        value: number;
        pointIndex: number;
        segment: string;
        type: "max" | "min";
        groupIndex?: number;
        categoryIndex?: number;
        navigationType: "point" | "group";
    }
    Index

    Properties

    label: string

    Human-readable label for the extrema (e.g., "Max Open", "Min Volatility")

    value: number

    The actual numeric value of the extrema

    pointIndex: number

    Index of the point to navigate to

    segment: string

    Identifier for the segment/group this extrema belongs to

    type: "max" | "min"

    Type of extrema - maximum or minimum

    groupIndex?: number

    Index of the group this extrema belongs to (for group-based plots)

    categoryIndex?: number

    Index of the category within the group (for group-based plots)

    navigationType: "point" | "group"

    Type of navigation this extrema requires