Skip to content

Commit 4943e25

Browse files
committed
switch to logscale
1 parent de7ce9e commit 4943e25

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

site/frontend/src/pages/dashboard.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ function render(
4444
},
4545
yAxis: {
4646
title: {text: "Seconds"},
47-
min: 0,
47+
min: 0.1,
48+
type: "logarithmic",
4849
},
4950
xAxis: {
5051
categories: versions,
@@ -100,7 +101,8 @@ function renderRuntime(element: string, data: [number], versions: [string]) {
100101
},
101102
yAxis: {
102103
title: {text: "Miliseconds"},
103-
min: 0,
104+
min: 0.1,
105+
type: "logarithmic",
104106
},
105107
xAxis: {
106108
categories: versions.slice(nullCount),

0 commit comments

Comments
 (0)