UNPKG

816 BTypeScriptView Raw
1import 'react';
2import { ScatterOptions as Options } from '@antv/g2plot/lib/plots/scatter';
3import { BasePlotOptions } from '../createPlot';
4import { LengendAPIOptions, TooltipAPIOptions, LabelAPIOptions } from './core/interface';
5interface BubbleOptions extends Options, BasePlotOptions {
6 /** 该属性已废弃,请使用size替代 */
7 pointSize?: any;
8 /**
9 * 该属性已废弃,请使用regressionLine替代,
10 * 文档查看:https://g2plot.antv.vision/zh/examples/scatter/basic/#regressionLine
11 */
12 trendLine?: any;
13 legend?: LengendAPIOptions;
14 tooltip?: TooltipAPIOptions;
15 label?: LabelAPIOptions;
16}
17export { BubbleOptions };
18declare const _default: import("react").ForwardRefExoticComponent<BubbleOptions & import("react").RefAttributes<any>>;
19export default _default;