1 | import 'react';
|
2 | import { BarOptions as Options } from '@antv/g2plot/lib/plots/bar';
|
3 | import { BasePlotOptions } from '../createPlot';
|
4 | import { LengendAPIOptions, TooltipAPIOptions, LabelAPIOptions } from './core/interface';
|
5 | interface BarOptions extends Options, BasePlotOptions {
|
6 |
|
7 | colorField?: any;
|
8 |
|
9 | legend?: LengendAPIOptions;
|
10 |
|
11 | tooltip?: TooltipAPIOptions;
|
12 |
|
13 | label?: LabelAPIOptions;
|
14 |
|
15 | barSize?: number;
|
16 |
|
17 | stackField?: string;
|
18 | }
|
19 | export declare const polyfill: (opt: BarOptions) => BarOptions;
|
20 | export { BarOptions };
|
21 | declare const _default: import("react").ForwardRefExoticComponent<BarOptions & import("react").RefAttributes<any>>;
|
22 | export default _default;
|