UNPKG

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