@antv/g2plot
Version:
An interactive and responsive charting library
23 lines (22 loc) • 587 B
TypeScript
import { Plot } from '../../core/plot';
import { Adaptor } from '../../core/adaptor';
import { RadarOptions } from './types';
import './interactions';
export type { RadarOptions };
export declare class Radar extends Plot<RadarOptions> {
/** 图表类型 */
type: string;
/**
* @override
* @param data
*/
changeData(data: any): void;
/**
* 获取 雷达图 默认配置
*/
protected getDefaultOptions(): Partial<RadarOptions>;
/**
* 获取 雷达图 的适配器
*/
protected getSchemaAdaptor(): Adaptor<RadarOptions>;
}