UNPKG

822 BTypeScriptView Raw
1import 'react';
2import { RoseOptions as Options } from '@antv/g2plot/lib/plots/rose';
3import { BasePlotOptions } from '../createPlot';
4import { LengendAPIOptions, TooltipAPIOptions, LabelAPIOptions } from './core/interface';
5interface GroupedRoseOptions extends Options, BasePlotOptions {
6 /** 请使用seriesField替代 */
7 groupField?: string;
8 /** 请使用xField替代 */
9 categoryField?: string;
10 /** 请使用yFeild替代 */
11 radiusField?: string;
12 /** 图例 */
13 legend?: LengendAPIOptions;
14 /** 图表提示框 */
15 tooltip?: TooltipAPIOptions;
16 /** 数据标注label */
17 label?: LabelAPIOptions;
18}
19export { GroupedRoseOptions };
20declare const _default: import("react").ForwardRefExoticComponent<GroupedRoseOptions & import("react").RefAttributes<any>>;
21export default _default;