ngx-beautiful-charts
Version:
A library to create charts in Angular
20 lines (19 loc) • 629 B
TypeScript
import { OnInit, OnChanges } from '@angular/core';
import { GanttChartService } from '../gantt-chart.service';
export declare class GcChartBaseComponent implements OnInit, OnChanges {
ganttChartService: GanttChartService;
gridWidthX: number;
gridWidthY: number;
gridPrecisionX: number;
gridID: string;
gridPath: string;
xAxis: any;
yAxis: any;
monthNames: string[];
addDays(date: any, days: number): string;
constructor(ganttChartService: GanttChartService);
shortenDate(date: any): any;
computeGrid(): void;
ngOnInit(): void;
ngOnChanges(): void;
}