UNPKG

ngx-beautiful-charts

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