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