Skip to content

Commit

Permalink
fix max point count
Browse files Browse the repository at this point in the history
  • Loading branch information
Vixtir committed Mar 27, 2019
1 parent deb6b49 commit 38d505a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class BaseMetricChartComponent implements OnInit, OnChanges, OnDestroy {
protected metrics: string[] = [];
protected metricSpecId: string;
protected metricSpecKind: string;
protected REQUEST_DELAY_MS: number = 2000;
protected REQUEST_DELAY_MS: number = 3000;
protected updateChartObservable$: Observable<any>;
protected timeSubject: Subject<any> = new Subject<any>();
protected providersSubject: Subject<any> = new Subject<any>();
Expand Down Expand Up @@ -186,6 +186,7 @@ export class BaseMetricChartComponent implements OnInit, OnChanges, OnDestroy {
},
plotOptions: {
series: {
turboThreshold: 10000,
cursor: 'pointer',
point: {
events: {
Expand Down

0 comments on commit 38d505a

Please sign in to comment.