ngx-beautiful-charts
Version:
A library to create charts in Angular
24 lines (23 loc) • 875 B
TypeScript
import { OnInit, OnChanges, ElementRef } from '@angular/core';
import { GanttChartService } from './gantt-chart.service';
import { GlobalParametersService } from '../../global/global-parameters.service';
export declare class GanttChartComponent implements OnInit, OnChanges {
ganttChartService: GanttChartService;
private globalParametersService;
private currentElement;
data: any;
width: number;
colorScheme: string;
customColorScheme: string[];
componentID: any;
xPadding: number;
yPadding: number;
height: number;
phaseTimelines: any;
setDimensions(): void;
setColors(): void;
definePhaseTimelines(): void;
constructor(ganttChartService: GanttChartService, globalParametersService: GlobalParametersService, currentElement: ElementRef);
ngOnInit(): void;
ngOnChanges(): void;
}