Skip to content

Commit b2f2034

Browse files
committed
refactor utilization chart labels for consistency
1 parent 1379cd8 commit b2f2034

File tree

1 file changed

+2
-3
lines changed
  • src/routes/team/[team]/[env]/app/[app]/utilization

1 file changed

+2
-3
lines changed

src/routes/team/[team]/[env]/app/[app]/utilization/+page.svelte

+2-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
},
9595
yAxis: {
9696
type: 'value',
97-
// name: 'Usage of requested resources',
9897
axisLabel: {
9998
formatter: (value: number) => value.toLocaleString('en-GB', { maximumFractionDigits: 4 })
10099
}
@@ -115,7 +114,7 @@
115114
{
116115
data: uniqueTimestamps.map((timestamp) => [timestamp, request]),
117116
type: 'line',
118-
name: 'Requested',
117+
name: 'Request',
119118
showSymbol: false,
120119
color: requestColor,
121120
lineStyle: {
@@ -128,7 +127,7 @@
128127
{
129128
yAxis: request,
130129
label: {
131-
formatter: 'Requested',
130+
formatter: 'Request',
132131
position: 'end',
133132
color: requestColor,
134133
offset: request === limit ? [0, 8] : [0, 0]

0 commit comments

Comments
 (0)