@echarts-component/vue
Version:
Echarts component for Vue
11 lines (10 loc) • 647 B
TypeScript
import { RadarOption } from 'echarts/types/dist/shared';
import { AxisNameTextStyleOption, LabelOption } from '../common/type';
export type { RadarOption };
export type TextType = "axisName" | "axisLabel";
export type TextOptions = AxisNameTextStyleOption | LabelOption;
export type Radar = Partial<Omit<RadarOption, "axisName" | "axisLine" | "axisTick" | "axisLabel" | "splitLine" | "splitArea">>;
export declare const DefaultRadar: Radar;
export declare const DefaultAxisNameTextStyleOptions: AxisNameTextStyleOption;
export declare const DefaultAxisLabelOptions: LabelOption;
export declare const TextMapDefault: Record<TextType, TextOptions>;