@visactor/react-vchart
Version:
The react version of VChart 4.x
11 lines (10 loc) • 475 B
TypeScript
import type React from 'react';
import type { IWaterfallChartSpec } from '@visactor/vchart';
import type { BaseChartProps } from './BaseChart';
export interface WaterfallChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IWaterfallChartSpec>, 'type'> {
}
export declare const WaterfallChart: React.ForwardRefExoticComponent<WaterfallChartProps & {
children?: React.ReactNode;
} & {
type?: 'waterfall';
} & React.RefAttributes<any>>;