Index: arms/html/dashboard/content-container.html =================================================================== diff -u -r4de755e3b3f8bd2bad7ae87af491771a85d6476d -r34dd6c2fe69d212409f3ad7d849a0a1895c1a642 --- arms/html/dashboard/content-container.html (.../content-container.html) (revision 4de755e3b3f8bd2bad7ae87af491771a85d6476d) +++ arms/html/dashboard/content-container.html (.../content-container.html) (revision 34dd6c2fe69d212409f3ad7d849a0a1895c1a642) @@ -1,12 +1,12 @@
-
+

- - Active Requirement + + 통합 현황

@@ -131,7 +131,7 @@ class="darkBack" style="padding-bottom: 10px; border: 0">
+ style="margin-bottom: 10px !important; padding: 10px 0px; !important; text-align: center"> 총 버전 개수
n/a

+ style="margin-bottom: 10px !important; padding: 10px 0px; !important; text-align: center"> 총 요구사항
n/a

+ style="margin-bottom: 10px !important; padding: 10px 0px; !important; text-align: center"> 총 이슈
n/a

+ style="margin-bottom: 10px !important; padding: 10px 0px; !important; text-align: center"> 요구사항별 평균 이슈 : n/a
@@ -585,15 +585,15 @@
-
+

인력별 요구사항&연결이슈 (top 5)

-
+

인력별 퍼포먼스 (top 5)

Index: arms/js/dashboard.js =================================================================== diff -u -rcf2ec0ef8bcd2fd8b918b541a8a3706e8bf2dffb -r34dd6c2fe69d212409f3ad7d849a0a1895c1a642 --- arms/js/dashboard.js (.../dashboard.js) (revision cf2ec0ef8bcd2fd8b918b541a8a3706e8bf2dffb) +++ arms/js/dashboard.js (.../dashboard.js) (revision 34dd6c2fe69d212409f3ad7d849a0a1895c1a642) @@ -1606,14 +1606,14 @@ function drawIssuePerManPower(data) { $("#issue-manpower-chart").html(""); - var width = 410, - height = 360, + var width = 270, + height = 380, margin = 10; var svg = d3 .select("#issue-manpower-chart") .append("svg") - .attr("viewBox", [0, -10, width - 40, height + 40]) + .attr("viewBox", [-20, 20, width, height]) .append("g"); var subgroups = ["issueCount", "relatedIssueCount"]; @@ -1671,15 +1671,6 @@ tooltip .html(function (d) { - if (subgroupName === "expert_worker_count") { - subgroupNameKorean = "특급"; - } else if (subgroupName === "advanced_worker_count") { - subgroupNameKorean = "고급"; - } else if (subgroupName === "intermediate_worker_count") { - subgroupNameKorean = "중급"; - } else if (subgroupName === "junior_worker_count") { - subgroupNameKorean = "초급"; - } return "상태: " + subgroupNameKorean + "
" + "작업자 수: " + roundToPrecision(subgroupValue, 0) + "명"; }) .style("opacity", 1);