@moritzbrantner/charts - v0.1.1
    Preparing search index...

    Type Alias ChartHeatmapGridProps<TProperties>

    type ChartHeatmapGridProps<TProperties = Record<string, unknown>> = {
        ariaLabel?: string;
        cells: ChartHeatmapCell<TProperties>[];
        className?: string;
        formatValue?: (cell: ChartHeatmapCell<TProperties>) => string;
        formatX?: (value: number) => string;
        formatY?: (value: number) => string;
        legend?: ReactNode | readonly ChartSvgLegendItem[];
        onCellSelect?: (cell: ChartHeatmapCell<TProperties>) => void;
        xAxis?: ChartSvgAxisOptions | false;
        yAxis?: ChartSvgAxisOptions | false;
    }

    Type Parameters

    • TProperties = Record<string, unknown>
    Index

    Properties

    ariaLabel?: string
    className?: string
    formatValue?: (cell: ChartHeatmapCell<TProperties>) => string
    formatX?: (value: number) => string
    formatY?: (value: number) => string
    legend?: ReactNode | readonly ChartSvgLegendItem[]
    onCellSelect?: (cell: ChartHeatmapCell<TProperties>) => void
    xAxis?: ChartSvgAxisOptions | false
    yAxis?: ChartSvgAxisOptions | false