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