From 132a62d6086a78f23baf4434769f84b72ccb66a8 Mon Sep 17 00:00:00 2001 From: denz Date: Tue, 6 Sep 2016 11:13:11 +0900 Subject: [PATCH] change category title field of active trace chart --- web/src/main/webapp/common/services/agent-dao.service.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/main/webapp/common/services/agent-dao.service.js b/web/src/main/webapp/common/services/agent-dao.service.js index 3f8ce37c320f..c1e73e4eaf87 100644 --- a/web/src/main/webapp/common/services/agent-dao.service.js +++ b/web/src/main/webapp/common/services/agent-dao.service.js @@ -257,10 +257,10 @@ }; this.getActiveTraceChartCategoryTitleForAmcharts = function (agentStat) { return { - "traceFace": agentStat.charts[ "ACTIVE_TRACE_FAST" ]["points"][0].title, - "traceNormal": agentStat.charts[ "ACTIVE_TRACE_NORMAL" ]["points"][0].title, - "traceSlow": agentStat.charts[ "ACTIVE_TRACE_SLOW" ]["points"][0].title, - "traceVerySlow": agentStat.charts[ "ACTIVE_TRACE_VERY_SLOW" ]["points"][0].title + "traceFace": agentStat.charts[ "ACTIVE_TRACE_FAST" ].title, + "traceNormal": agentStat.charts[ "ACTIVE_TRACE_NORMAL" ].title, + "traceSlow": agentStat.charts[ "ACTIVE_TRACE_SLOW" ].title, + "traceVerySlow": agentStat.charts[ "ACTIVE_TRACE_VERY_SLOW" ].title }; }; }