UNPKG

566 BTypeScriptView Raw
1import 'react';
2import { GaugeOptions as Options } from '@antv/g2plot/lib/plots/gauge';
3import { Statistic } from '@antv/g2plot/lib/types';
4import { BasePlotOptions } from '../createPlot';
5interface GaugeOptions extends BasePlotOptions, Options {
6 /** 该属性是g2Plot@1.0属性,即将废弃,请使用percent替代 */
7 value?: number;
8 statistic?: Statistic | Record<string, any>;
9}
10export { GaugeOptions };
11declare const _default: import("react").ForwardRefExoticComponent<GaugeOptions & import("react").RefAttributes<any>>;
12export default _default;