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

    Manages visual synchronization between MAIDR and a Highcharts chart.

    interface HighchartsSync {
        highlightPoint: (seriesIndex: number, pointIndex: number) => void;
        clearHighlight: () => void;
        dispose: () => void;
    }
    Index

    Properties

    highlightPoint: (seriesIndex: number, pointIndex: number) => void

    Highlights a specific point in the chart by setting its hover state and refreshing the tooltip.

    Type Declaration

      • (seriesIndex: number, pointIndex: number): void
      • Parameters

        • seriesIndex: number

          Index of the series within the chart.

        • pointIndex: number

          Index of the point within the series.

        Returns void

    clearHighlight: () => void

    Clears all active highlights and hides the tooltip.

    dispose: () => void

    Cleans up listeners and resets chart state.