diff --git a/web/index.html b/web/index.html index 03ce7694..e0d8b23c 100644 --- a/web/index.html +++ b/web/index.html @@ -117,6 +117,8 @@

Package by Size 1

Package by Size 2

+

Coder Flower

+

Organizational Culture

@@ -149,6 +151,7 @@

Commits Tree

+ diff --git a/web/public/js/graph/cloc/code-flower.js b/web/public/js/graph/cloc/code-flower.js new file mode 100644 index 00000000..ff9b6eaa --- /dev/null +++ b/web/public/js/graph/cloc/code-flower.js @@ -0,0 +1,3 @@ +function renderCodeFlower(data) { + console.log(data); +} diff --git a/web/public/js/graph/plugins/pipeline-visual.js b/web/public/js/graph/plugins/pipeline-visual.js index d248c216..133be73e 100644 --- a/web/public/js/graph/plugins/pipeline-visual.js +++ b/web/public/js/graph/plugins/pipeline-visual.js @@ -58,8 +58,6 @@ function visualizationPipeline(data, elementId) { }) })); - console.log(stages); - let svg = d3.select(elementId) .append('svg') .attr('width', '100%') diff --git a/web/public/js/index.js b/web/public/js/index.js index 4a40b462..4ae16856 100644 --- a/web/public/js/index.js +++ b/web/public/js/index.js @@ -14,6 +14,7 @@ d3.json("data/cloc.json").then(function (json) { renderPacking(data["reports"]) renderNestedTreemap(data["reports"]) + renderCodeFlower(data["reports"]); }); d3.json("data/git.json").then(function (json) {