stz-chart-maker Documentation - v2.4.2
    Preparing search index...

    Interface StzClickContext<TType>

    interface StzClickContext<TType extends ChartType> {
        chart: Chart<TType>;
        chartType?: TType;
        items: StzClickItem[];
        pointer: {
            canvasX: number | null;
            canvasY: number | null;
            xValue?: unknown;
            yValue?: unknown;
        };
        primary?: StzClickItem;
    }

    Type Parameters

    • TType extends ChartType
    Index

    Properties

    chart: Chart<TType>
    chartType?: TType
    items: StzClickItem[]
    pointer: {
        canvasX: number | null;
        canvasY: number | null;
        xValue?: unknown;
        yValue?: unknown;
    }
    primary?: StzClickItem