///
type HeatMapLabel = number | string;
export interface Data {
value: number;
percentage: string;
colorOpacityDegree: number;
}
export type HeatMapProps = {
xAxis: {
labels: HeatMapLabel[];
render?: (label: HeatMapLabel) => React.ReactNode;
};
yAxis: {
labels: HeatMapLabel[];
render?: (label: HeatMapLabel) => React.ReactNode;
};
series: Record>;
isLoading?: boolean;
tooltip?: {
render?: (value: Data, x: HeatMapLabel, y: HeatMapLabel) => React.ReactNode;
};
};
export {};