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