stream-charts
    Preparing search index...

    Interface TooltipData<D, M>

    Base interface for tooltip data that is passed through to the tooltip content provider

    interface TooltipData<D, M> {
        metadata: M;
        series: Series<D>;
    }

    Type Parameters

    • D

      The type of the data object for the series

    • M

      The type of the metadata object for the series

    Index

    Properties

    Properties

    metadata: M
    series: Series<D>