@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 { IRangeAreaChartSpec } from '@visactor/vchart';
import type { BaseChartProps } from './BaseChart';
export interface RangeAreaChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IRangeAreaChartSpec>, 'type'> {
}
export declare const RangeAreaChart: React.ForwardRefExoticComponent<RangeAreaChartProps & {
children?: React.ReactNode;
} & {
type?: 'rangeArea';
} & React.RefAttributes<any>>;