import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; import { Router } from '@angular/router'; export declare class FcchartlineComponent extends FcinputComponent { provider: ProvidersService; private router; /**配置图表数据*/ fcData: any[]; /**视图大小,number[]型,如果不传继承父级的宽高*/ fcView: number[]; /**图表的配色方案*/ fcScheme: any; /**图表的自定义颜色。用于覆盖特定值的颜色*/ fcCustomColors: any; /** 显示或隐藏x轴*/ fcShowXAxis: string; _showXAxis: boolean; /**显示或隐藏y轴*/ fcShowYAxis: string; _showYAxis: boolean; /**是否渐变填充元素而不是纯色*/ fcGradient: string; _gradient: boolean; /**显示或隐藏图例*/ fcShowLegend: string; _showLegend: boolean; /** 显示或隐藏x轴标签*/ fcShowXAxisLabel: string; _showXAxisLabel: boolean; /** 显示或隐藏y轴标签*/ fcShowYAxisLabel: string; _showYAxisLabel: boolean; /**x轴标签文字*/ fcXAxisLabel: string; /**y轴标签文字*/ fcYAxisLabel: string; /**是否是空心圆,默认是空心圆*/ fcDoughnut: string; _doughnut: boolean; /**柱状图类型,包括折现图'default',极地'advanced',面积'grid',堆积面积'grid',归一化面积'grid'*/ fcType: string; /**是否自动放大缩小*/ _autoScale: boolean; /**图例标题*/ fcLegendTitle: string; constructor(provider: ProvidersService, router: Router); _afterParentInit(): void; /** * 选中 * @param event */ _activate(event: any): void; /** * 元素激活事件(鼠标输入) * @param event */ _deactivate(event: any): void; /** * 元素停用事件(鼠标离开) * @param event */ _select(event: any): void; }