import * as i0 from '@angular/core'; import { Type } from '@angular/core'; import { TdSeriesDirective, ITdSeries, TdMarkPointSymbol, ITdItemStyle, ITdLabel, ITdLineStyle, ITdEmphasis, ITdShadow } from '@covalent/echarts/base'; /** * ECHART OPTION DOCS * https://ecomfe.github.io/echarts-doc/public/en/option.html#series-tree * */ /** * LR - from left to right * RL - from right to left * TB - from top to bottom * BT - from bottom to top */ type TdTreeOrient = 'LR' | 'RL' | 'TB' | 'BT'; type TdTreeLayout = 'orthogonal' | 'radial'; interface ITdTreeEmphasisLineStyle extends ITdShadow { color?: any; width?: number; curveness?: number; } interface ITdTreeEmphasis extends ITdEmphasis { lineStyle: ITdTreeEmphasisLineStyle; } interface ITdTreeLeaves { label?: ITdLabel; itemStyle?: ITdItemStyle; emphasis?: ITdEmphasis; } interface ITdTreeSeries extends ITdSeries { zlevel?: number; z?: number; left?: string | number; top?: string | number; right?: string | number; bottom?: string | number; width?: string | number; height?: string | number; layout?: TdTreeLayout; orient?: TdTreeOrient; symbol?: TdMarkPointSymbol | string; symbolSize?: number; symbolRotate?: number; symbolKeepAspect?: boolean; symbolOffset?: any[]; roam?: boolean | string; expandAndCollapse?: boolean; initialTreeDepth?: number; itemStyle?: ITdItemStyle; label?: ITdLabel; lineStyle?: ITdLineStyle; leaves?: ITdTreeLeaves; emphasis?: ITdTreeEmphasis; data?: any[]; } declare class TdChartSeriesTreeComponent extends TdSeriesDirective implements ITdTreeSeries { zlevel?: number; z?: number; left?: string | number; top?: string | number; right?: string | number; bottom?: string | number; width?: string | number; height?: string | number; layout?: TdTreeLayout; orient?: TdTreeOrient; symbol?: TdMarkPointSymbol | string; symbolSize?: number; symbolRotate?: number; symbolKeepAspect?: boolean; roam?: boolean | string; expandAndCollapse?: boolean; initialTreeDepth?: number; itemStyle?: ITdItemStyle; label?: ITdLabel; lineStyle?: ITdLineStyle; leaves?: ITdTreeLeaves; emphasis?: ITdTreeEmphasis; constructor(); getConfig(): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare const TREE_MODULE_COMPONENTS: Type[]; /** * @deprecated This module is deprecated and will be removed in future versions. * Please migrate to using standalone components as soon as possible. */ declare class CovalentTreeEchartsModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { CovalentTreeEchartsModule, TREE_MODULE_COMPONENTS, TdChartSeriesTreeComponent }; export type { ITdTreeEmphasis, ITdTreeEmphasisLineStyle, ITdTreeLeaves, TdTreeLayout, TdTreeOrient };