import { OnInit, EventEmitter } from '@angular/core'; import { CommonService } from '../../service/common.service'; import { CompareChartService } from './compare-chart.service'; import { ECharts, EChartOption } from 'echarts'; import { ChartResizeService } from '../../service/chart-resize.service'; import { ChartOptionService } from '../../service/chart-option.service'; export declare class CompareChartComponent implements OnInit { private compareChartService; private commonService; private chartOptionService; private chartResizeService; constructor(compareChartService: CompareChartService, commonService: CommonService, chartOptionService: ChartOptionService, chartResizeService: ChartResizeService); chartTitle: { show: boolean; label: string; }; cardPadding: string; cardBgColor: string; chartTitleColor: string; chartBackgroundColor: string; chartColors: string[]; chartTitles: { show: boolean; text: string; }; chartLegend: { type: "scroll" | "plain"; show: boolean; width: string; bottom: string; orient: string; itemGap: number; itemWidth: number; itemHeight: number; pageIconSize: any; pageTextStyle: { fontSize: any; }; pageIcons: { horizontal: string[]; pageIconColor: string; }; textStyle: { fontSize: number; fontWeight: number; padding: number; }; }; chartGrid: EChartOption.Grid; chartxAxis: EChartOption.XAxis[]; chartyAxis: EChartOption.YAxis[]; chartTextStyle: EChartOption.TextStyle; lineChartSeries: EChartOption.Series; customChartSeries: EChartOption.SeriesCustom; chartTooltip: EChartOption.Tooltip; chartSeriesList: EChartOption.Series[]; chartOption: { backgroundColor: string; title: { show: boolean; label: string; }; color: string[]; legend: { type: "scroll" | "plain"; show: boolean; width: string; bottom: string; orient: string; itemGap: number; itemWidth: number; itemHeight: number; pageIconSize: any; pageTextStyle: { fontSize: any; }; pageIcons: { horizontal: string[]; pageIconColor: string; }; textStyle: { fontSize: number; fontWeight: number; padding: number; }; }; tooltip: EChartOption.Tooltip; grid: EChartOption.Grid; xAxis: EChartOption.XAxis[]; yAxis: EChartOption.YAxis[]; series: EChartOption.Series[]; textStyle: EChartOption.TextStyle; }; initOpts: { renderer: string; devicePixelRatio: number; }; echartInstance: ECharts; onOptionInit(ec: any): void; options: any; initEchart(): void; updateOption(): void; bcacDarkMode: boolean; bcacSmallMode: boolean; legendPosition: string; bcacLegendPosition: string; legendDataArr: any; bcacChartData: any; legendChange(e: any): void; dataSourceSelectData: any[]; bcacDataSourceList: any[]; bcacTitleSwith: boolean; bcacTitle: string; unit: string; bcacUnit: string; bcacXaxisName: string; bcacYaxisName: string; bcacYnameGap: number; bcacXaxisLabelRotate: any; years: string[]; bcacCompareYears: string[]; _bcacChartLoading: boolean; bcacChartLoading: boolean; bcacYAxisMin: number | null | undefined; bcacYAxisMax: number | null | undefined; bcacYAxisInterval: any; bcacAxisSplitLine: boolean; intervalDatas: any[]; intervalSelectedData: any; bcacIntervalDatas: any[]; intervalSelectedDataChange(e: any): void; axisScaleChange(e: any): void; bcacDataSourceSelectEmit: EventEmitter; dataSourceChange($event: any): void; ngOnInit(): void; }