1 | import 'react';
|
2 | import { RoseOptions as Options } from '@antv/g2plot/lib/plots/rose';
|
3 | import { BasePlotOptions } from '../createPlot';
|
4 | import { LengendAPIOptions, TooltipAPIOptions, LabelAPIOptions } from './core/interface';
|
5 | interface StackedRoseOptions extends Options, BasePlotOptions {
|
6 |
|
7 | stackField?: string;
|
8 |
|
9 | categoryField?: string;
|
10 |
|
11 | radiusField?: string;
|
12 | legend?: LengendAPIOptions;
|
13 | tooltip?: TooltipAPIOptions;
|
14 | label?: LabelAPIOptions;
|
15 | }
|
16 | export { StackedRoseOptions };
|
17 | declare const _default: import("react").ForwardRefExoticComponent<StackedRoseOptions & import("react").RefAttributes<any>>;
|
18 | export default _default;
|