From 0a07cace67eedb6a87f0adaea6e9de85daeef1be Mon Sep 17 00:00:00 2001 From: Ludek Novy <13610612+ludeknovy@users.noreply.github.com> Date: Tue, 10 May 2022 10:00:08 +0200 Subject: [PATCH] display zero value columns (#257) --- src/app/graphs/label-trend.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/graphs/label-trend.ts b/src/app/graphs/label-trend.ts index 4a127cda..3713be26 100644 --- a/src/app/graphs/label-trend.ts +++ b/src/app/graphs/label-trend.ts @@ -36,11 +36,10 @@ export const labelTrendChartOptions = (data: LabelTrend) => { labels: { format: "{value} ms", }, - type: "logarithmic", title: { text: "", }, - gridLineWidth: 0 + gridLineWidth: 0, }, { title: { text: "", @@ -48,7 +47,6 @@ export const labelTrendChartOptions = (data: LabelTrend) => { labels: { format: "{value} reqs/s", }, - type: "logarithmic", gridLineWidth: 0, opposite: true }, @@ -72,7 +70,6 @@ export const labelTrendChartOptions = (data: LabelTrend) => { labels: { format: "{value} VU", }, - type: "logarithmic", gridLineWidth: 0, opposite: false, } @@ -85,6 +82,9 @@ export const labelTrendChartOptions = (data: LabelTrend) => { areaspline: { fillOpacity: 0.9, }, + column: { + minPointLength: 3, + }, series: { dataLabels: { enabled: false