UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

11 lines (10 loc) 463 B
import type React from 'react'; import type { IHeatmapChartSpec } from '@visactor/vchart'; import type { BaseChartProps } from './BaseChart'; export interface HeatmapChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IHeatmapChartSpec>, 'type'> { } export declare const HeatmapChart: React.ForwardRefExoticComponent<HeatmapChartProps & { children?: React.ReactNode; } & { type?: 'heatmap'; } & React.RefAttributes<any>>;