UNPKG

ngx-beautiful-charts

Version:
16 lines (15 loc) 549 B
import { OnInit, OnChanges } from '@angular/core'; import { ClusteredBarChartService } from '../clustered-bar-chart.service'; export declare class CbcChartBaseComponent implements OnInit, OnChanges { clusteredBarChartService: ClusteredBarChartService; xAxisTitle: string; yAxisTitle: string; showGridLines: boolean; yLevelPaths: string[]; xAxis: any; yAxis: any; computeGrid(): void; constructor(clusteredBarChartService: ClusteredBarChartService); ngOnInit(): void; ngOnChanges(): void; }