From 465409982dfa9758df61ed84e115e1b3eb09c917 Mon Sep 17 00:00:00 2001 From: phamt Date: Sat, 13 Jul 2013 14:10:26 +0000 Subject: [PATCH] Enlarged division width of bar chart so it could accommodate more data. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@16971 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/custom/zvmUtils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-UI/js/custom/zvmUtils.js b/xCAT-UI/js/custom/zvmUtils.js index d2b52c17d..184dc05bc 100644 --- a/xCAT-UI/js/custom/zvmUtils.js +++ b/xCAT-UI/js/custom/zvmUtils.js @@ -3486,7 +3486,7 @@ function loadDiskPoolTable(data) { // Create bar chart, only when there is data var plot; var panelId = hcp + 'Disks'; - $('#' + panelId).prepend($('
')); + $('#' + panelId).prepend($('
')); plot = $.jqplot(hcp + 'DiskChart', [used, free], { title: '', stackSeries: true, @@ -3720,7 +3720,7 @@ function loadZfcpPoolTable(data) { // Create bar chart, only when there is data if ((used.length || free.length) && ticks.length) { - $('#' + panelId).prepend($('
')); + $('#' + panelId).prepend($('
')); var plot = $.jqplot(hcp + 'ZfcpChart', [used, free], { title: '', stackSeries: true,