UNPKG

767 BTypeScriptView Raw
1import 'react';
2import { HeatmapOptions } from '@antv/g2plot/lib/plots/heatmap';
3import { BasePlotOptions } from '../createPlot';
4import { LengendAPIOptions, TooltipAPIOptions, LabelAPIOptions } from './core/interface';
5interface DensityHeatmapOptions extends HeatmapOptions, BasePlotOptions {
6 /** g2Plot@1.0的api,即将废弃,请使用 `sizeRatio` 替代 */
7 radius?: Record<string, any> | number;
8 /** 图例 */
9 legend?: LengendAPIOptions;
10 /** 图表提示框 */
11 tooltip?: TooltipAPIOptions;
12 /** 数据标注label */
13 label?: LabelAPIOptions;
14}
15export { DensityHeatmapOptions };
16declare const _default: import("react").ForwardRefExoticComponent<DensityHeatmapOptions & import("react").RefAttributes<any>>;
17export default _default;