@visactor/react-vchart
Version:
The react version of VChart 4.x
8 lines (7 loc) • 354 B
TypeScript
import { BaseSeriesProps } from './BaseSeries';
import type { IWaterfallSeriesSpec } from '@visactor/vchart';
export type WaterfallProps = BaseSeriesProps & Omit<IWaterfallSeriesSpec, 'type'>;
export declare const Waterfall: import("react").FC<BaseSeriesProps & Omit<IWaterfallSeriesSpec, "type"> & {
updateId?: number;
componentId?: string;
}>;