From ec358f458e9e9d0ce1f44fdef29bed3738cb4e72 Mon Sep 17 00:00:00 2001 From: Denny Lim Date: Mon, 19 May 2014 08:26:03 +0000 Subject: [PATCH] =?UTF-8?q?[=EC=9E=84=EB=8C=80=ED=98=84]=20#51=20=EC=B0=A8?= =?UTF-8?q?=ED=8A=B8=20=EB=9D=BC=EC=9D=B4=EB=B8=8C=EB=9F=AC=EB=A6=AC=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@3888 84d0f5b1-2673-498c-a247-62c4ff18d310 --- src/main/webapp/scripts/directives/loadChart.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/scripts/directives/loadChart.js b/src/main/webapp/scripts/directives/loadChart.js index 3e0a8b966..adfcfd814 100644 --- a/src/main/webapp/scripts/directives/loadChart.js +++ b/src/main/webapp/scripts/directives/loadChart.js @@ -150,9 +150,12 @@ pinpointApp * @param data */ updateData = function (data) { - oChart.dataProvider = data; +// oChart.dataProvider = data; + oChart.clear(); + element.empty(); $timeout(function () { - oChart.validateData(); +// oChart.validateData(); + render(data, true); }); };