Change unit name to show in pie chart label

master
RKBoss6 2025-07-09 14:58:59 -04:00 committed by GitHub
parent 556401329b
commit 8c4d2fe0ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -86,12 +86,12 @@
const chartData = [
['App', 'Total Size']
].concat(globalApps.map(app => [app[0], (app[1] + app[2])/1000+" kb"]));
].concat(globalApps.map(app => [app[0], (app[1] + app[2])/1000]));
const data = google.visualization.arrayToDataTable(chartData);
const options = {
title: 'App Storage Breakdown',
title: 'App Storage Breakdown (in KBs)',
is3D: false,
chartArea: {
width: '90%',