summaryrefslogtreecommitdiff
path: root/assets/js/components/chart-project-burndown.js
blob: 34a01e4a6564126c0e0bef29816326dc37a543b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
KB.component('chart-project-burndown', function (containerElement, options) {

    this.render = function () {
        var metrics = options.metrics;
        var columns = [[options.labelTotal]];
        var categories = [];
        var inputFormat = d3.time.format("%Y-%m-%d");
        var outputFormat = d3.time.format(options.dateFormat);

        for (var i = 0; i < metrics.length; i++) {

            for (var j = 0; j < metrics[i].length; j++) {

                if (i == 0) {
                    columns.push([metrics[i][j]]);
                }
                else {
                    columns[j + 1].push(metrics[i][j]);

                    if (j > 0) {

                        if (columns[0][i] == undefined) {
                            columns[0].push(0);
                        }

                        columns[0][i] += metrics[i][j];
                    }

                    if (j == 0) {
                        categories.push(outputFormat(inputFormat.parse(metrics[i][j])));
                    }
                }
            }
        }

        KB.el(containerElement).add(KB.el('div').attr('id', 'chart').build());

        c3.generate({
            data: {
                columns: columns
            },
            axis: {
                x: {
                    type: 'category',
                    categories: categories
                }
            }
        });
    };
});