ngx-beautiful-charts
Version:
A library to create charts in Angular
16 lines (15 loc) • 493 B
TypeScript
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;
}