global: snapshot

This commit is contained in:
nym21
2026-03-22 12:18:54 +01:00
parent fbff230c86
commit f731f0d9d0
2 changed files with 3 additions and 12 deletions

View File

@@ -95,7 +95,7 @@ function percentileSeries({ pattern, unit, title = "" }) {
return [
line({
series: pattern.max,
name: `${title} max`.trim(),
name: `${title} Max`.trim(),
color: stat.max,
unit,
}),
@@ -113,7 +113,7 @@ function percentileSeries({ pattern, unit, title = "" }) {
}),
line({
series: pattern.median,
name: `${title} median`.trim(),
name: `${title} Median`.trim(),
color: stat.median,
unit,
}),
@@ -131,7 +131,7 @@ function percentileSeries({ pattern, unit, title = "" }) {
}),
line({
series: pattern.min,
name: `${title} min`.trim(),
name: `${title} Min`.trim(),
color: stat.min,
unit,
}),