UNPKG

604 BTypeScriptView Raw
1import 'react';
2import { TreemapOptions as Options } from '@antv/g2plot/lib/plots/treemap';
3import { BasePlotOptions } from '../createPlot';
4import { TooltipAPIOptions, LabelAPIOptions } from './core/interface';
5interface TreemapOptions extends Options, BasePlotOptions {
6 /** maxLevel 旧版g2Plot api,即将废弃请查看最新文档 */
7 maxLevel?: number;
8 tooltip?: TooltipAPIOptions;
9 label?: LabelAPIOptions;
10}
11export { TreemapOptions };
12declare const _default: import("react").ForwardRefExoticComponent<TreemapOptions & import("react").RefAttributes<any>>;
13export default _default;