UNPKG

@echarts-component/vue

Version:
11 lines (10 loc) 731 B
import { XAXisOption } from 'echarts/types/dist/shared'; import { AxisNameTextStyleOption, LabelOption } from '../common/type'; export type TextType = "nameTextStyle" | "axisLabel"; export type TextOptions = AxisNameTextStyleOption | LabelOption; export type { XAXisOption }; export type XAxis = Partial<Omit<XAXisOption, "nameTextStyle" | "nameTruncate" | "axisLine" | "axisTick" | "minorTick" | "axisLabel" | "splitLine" | "minorSplitLine" | "splitArea" | "axisPointer" | "tooltip">>; export declare const DefaultXAxis: XAxis; export declare const DefaultNameTextStyleOptions: AxisNameTextStyleOption; export declare const DefaultAxisLabelOptions: LabelOption; export declare const TextMapDefault: Record<TextType, TextOptions>;