@echarts-component/vue
Version:
Echarts component for Vue
10 lines (9 loc) • 502 B
TypeScript
import { AxisPointerOption } from 'echarts/types/dist/shared';
import { LabelOption } from '../common/type';
export type TextType = "label";
export type TextOptions = LabelOption;
export type { AxisPointerOption };
export type AxisPointer = Partial<Omit<AxisPointerOption, "label" | "lineStyle" | "shadowStyle" | "handle">>;
export declare const DefaultAxisPointer: AxisPointer;
export declare const DefaultLabelOptions: LabelOption;
export declare const TextMapDefault: Record<TextType, TextOptions>;