From 944660c64edcd5c21d11f4b205bf0cbaa81fff20 Mon Sep 17 00:00:00 2001 From: Stefan Benker <114066135+D13ce@users.noreply.github.com> Date: Tue, 5 Sep 2023 07:39:38 +0200 Subject: [PATCH] (BIDS-2445) Increase turboThreshold for income charts (#2525) --- static/js/dashboard.js | 3 +++ templates/validator/charts.html | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/static/js/dashboard.js b/static/js/dashboard.js index 218ac72985..c9e681da46 100644 --- a/static/js/dashboard.js +++ b/static/js/dashboard.js @@ -1422,6 +1422,9 @@ function createIncomeChart(income, executionIncomeHistory) { }, pointInterval: 24 * 3600 * 1000, }, + series: { + turboThreshold: 10000, + }, }, xAxis: { type: "datetime", diff --git a/templates/validator/charts.html b/templates/validator/charts.html index f7b6ee3228..ed642fe95a 100644 --- a/templates/validator/charts.html +++ b/templates/validator/charts.html @@ -203,7 +203,10 @@ enabled: false }, pointInterval: 24 * 3600 * 1000, - } + }, + series: { + turboThreshold: 10000, + }, }, xAxis: { type: 'datetime',