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