Added proper labels for Y axis data on metrics graphs

This commit is contained in:
ShadowArcanist 2025-09-19 23:14:15 +05:30
parent 20c57cde78
commit ee40fa0bef
2 changed files with 50 additions and 38 deletions

View file

@ -135,6 +135,9 @@ class="pt-5">
show: true, show: true,
style: { style: {
colors: textColor, colors: textColor,
},
formatter: function(value) {
return Math.round(value) + ' %';
} }
} }
}, },
@ -266,6 +269,9 @@ class="pt-5">
show: true, show: true,
style: { style: {
colors: textColor, colors: textColor,
},
formatter: function(value) {
return Math.round(value) + ' MB';
} }
} }
}, },

View file

@ -131,6 +131,9 @@
show: true, show: true,
style: { style: {
colors: textColor, colors: textColor,
},
formatter: function(value) {
return Math.round(value) + ' %';
} }
} }
}, },
@ -265,6 +268,9 @@
show: true, show: true,
style: { style: {
colors: textColor, colors: textColor,
},
formatter: function(value) {
return Math.round(value) + ' %';
} }
} }
}, },