1 | import 'react';
|
2 | import { TinyColumnOptions as Options } from '@antv/g2plot/lib/plots/tiny-column';
|
3 | import { BasePlotOptions } from '../createPlot';
|
4 | type Opt = Omit<Options, 'data'>;
|
5 | interface TinyColumnOptions extends Opt, BasePlotOptions {
|
6 |
|
7 | colorField?: string;
|
8 | data: number[] | Record<string, any>[];
|
9 |
|
10 | xField?: string;
|
11 |
|
12 | yField?: string;
|
13 |
|
14 | guideLine?: Array<object>;
|
15 | }
|
16 | export { TinyColumnOptions };
|
17 | declare const _default: import("react").ForwardRefExoticComponent<TinyColumnOptions & import("react").RefAttributes<any>>;
|
18 | export default _default;
|