@echarts-component/vue
Version:
Echarts component for Vue
5 lines (4 loc) • 313 B
TypeScript
import { TreeSeriesOption } from 'echarts/charts';
export type { TreeSeriesOption };
export type TreeSeries = Partial<Omit<TreeSeriesOption, "type" | "label" | "labelLayout" | "itemStyle" | "lineStyle" | "emphasis" | "blur" | "select" | "leaves" | "tooltip">>;
export declare const DefaultTreeSeries: TreeSeries;