UNPKG

@echarts-component/vue

Version:
11 lines (10 loc) 647 B
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>;