From a47e2873b0507c821a4313a9d5ff3772f4af828f Mon Sep 17 00:00:00 2001 From: Max Ostapenko <1611259+max-ostapenko@users.noreply.github.com> Date: Fri, 8 Nov 2024 23:28:02 +0100 Subject: [PATCH] max 100 percent --- src/js/histogram.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/histogram.js b/src/js/histogram.js index 02c4c1cf..b82bab44 100644 --- a/src/js/histogram.js +++ b/src/js/histogram.js @@ -368,7 +368,8 @@ function drawChart(series, containerId, options) { }, labels: { format: '{value}%' - } + }, + tickAmount: 6, }, { title: { text: 'Cumulative Density' @@ -377,6 +378,7 @@ function drawChart(series, containerId, options) { format: '{value}%' }, max: 100, + tickAmount: 6, opposite: true }], series,