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

    Interface ExtremaNavigable

    Interface for plots that support extrema navigation Any plot implementing this interface can be used with the go-to extrema feature

    interface ExtremaNavigable {
        getExtremaTargets: () => ExtremaTarget[];
        navigateToExtrema: (target: ExtremaTarget) => void;
    }
    Index

    Properties

    getExtremaTargets: () => ExtremaTarget[]

    Get available extrema targets for the current navigation context

    Type Declaration

    navigateToExtrema: (target: ExtremaTarget) => void

    Navigate to a specific extrema target

    Type Declaration