Skip to content

Commit

Permalink
display zero value columns (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored May 10, 2022
1 parent d0b02d7 commit 0a07cac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/graphs/label-trend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,17 @@ export const labelTrendChartOptions = (data: LabelTrend) => {
labels: {
format: "{value} ms",
},
type: "logarithmic",
title: {
text: "",
},
gridLineWidth: 0
gridLineWidth: 0,
}, {
title: {
text: "",
},
labels: {
format: "{value} reqs/s",
},
type: "logarithmic",
gridLineWidth: 0,
opposite: true
},
Expand All @@ -72,7 +70,6 @@ export const labelTrendChartOptions = (data: LabelTrend) => {
labels: {
format: "{value} VU",
},
type: "logarithmic",
gridLineWidth: 0,
opposite: false,
}
Expand All @@ -85,6 +82,9 @@ export const labelTrendChartOptions = (data: LabelTrend) => {
areaspline: {
fillOpacity: 0.9,
},
column: {
minPointLength: 3,
},
series: {
dataLabels: {
enabled: false
Expand Down

0 comments on commit 0a07cac

Please sign in to comment.