Skip to content

Commit

Permalink
switch to logscale
Browse files Browse the repository at this point in the history
  • Loading branch information
s7tya committed Oct 9, 2024
1 parent de7ce9e commit 4943e25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions site/frontend/src/pages/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ function render(
},
yAxis: {
title: {text: "Seconds"},
min: 0,
min: 0.1,
type: "logarithmic",
},
xAxis: {
categories: versions,
Expand Down Expand Up @@ -100,7 +101,8 @@ function renderRuntime(element: string, data: [number], versions: [string]) {
},
yAxis: {
title: {text: "Miliseconds"},
min: 0,
min: 0.1,
type: "logarithmic",
},
xAxis: {
categories: versions.slice(nullCount),
Expand Down

0 comments on commit 4943e25

Please sign in to comment.