import { BaseChart } from './BaseChart'; import { OnInit, ElementRef } from '@angular/core'; import { ResultExtender } from '../../model-extensions/result.extender'; import { HighChartYAxis } from './highcharts/HighChartYAxis'; import { HighChartResultChart } from './highcharts/HighChartResultChart'; import { Test, Result } from 'stms-shared-models'; export declare class TestCumulativeChartComponent extends BaseChart implements OnInit { private elementRef; results: Array; test: Test; height: number; width: number; simpleview: boolean; _maxResult: number; _minResult: number; _firstResult: ResultExtender; constructor(elementRef: ElementRef); getOptions(): HighChartResultChart; addBounds(yaxis: HighChartYAxis): void; getSeries(): void; ngOnInit(): void; getBorderRange(yaxis: HighChartYAxis): void; }