Fix chart y-axis

This commit is contained in:
headlessdev 2025-04-23 19:21:56 +02:00
parent 577a577350
commit 443581d676

View File

@ -161,7 +161,8 @@ export default function ServerDetail() {
max: 100,
beginAtZero: true,
ticks: {
stepSize: 20,
stepSize: 25,
autoSkip: false,
callback: function(value: any) {
return value + '%';
}