UNPKG

ngx-beautiful-charts

Version:
22 lines (21 loc) 628 B
import { OnInit, OnChanges } from '@angular/core'; import { LineGraphService } from '../line-graph.service'; export declare class LgChartBaseComponent implements OnInit, OnChanges { lineGraphService: LineGraphService; xAxisTitle: string; yAxisTitle: string; gridPrecisionX: number; gridPrecisionY: number; gridWidthX: number; gridWidthY: number; gridID: string; gridPath: string; x1: number; x2: number; xAxis: any; yAxis: any; computeGrid(): void; constructor(lineGraphService: LineGraphService); ngOnInit(): void; ngOnChanges(): void; }