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