@echarts-component/vue
Version:
Echarts component for Vue
10 lines (9 loc) • 809 B
TypeScript
import { LegendComponentOption } from 'echarts/components';
import { TextCommonOption } from '../common/type';
export type { LegendComponentOption };
export type TextType = "textStyle" | "pageTextStyle";
export type TextOptions = TextCommonOption;
export type LegendOptions = Partial<Omit<LegendComponentOption, "itemStyle" | "lineStyle" | "textStyle" | "tooltip" | "formatter" | "selected" | "scrollDataIndex" | "pageButtonItemGap" | "pageButtonGap" | "pageButtonPosition" | "pageFormatter" | "pageIcons" | "pageIconColor" | "pageIconInactiveColor" | "pageIconSize" | "pageTextStyle" | "emphasis" | "selectorLabel">>;
export declare const DefaultLegendOptions: LegendOptions;
export declare const DefaultTextStyleOptions: TextCommonOption;
export declare const TextMapDefault: Record<TextType, TextOptions>;