summaryrefslogtreecommitdiff
path: root/assets/js/components/chart-task-time-column.js
blob: 887d24d4a8cc2afa9018367e373ab264a8366271 (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
KB.component('chart-task-time-column', function (containerElement, options) {

    this.render = function () {
        var metrics = options.metrics;
        var plots = [options.label];
        var categories = [];

        for (var i = 0; i < metrics.length; i++) {
            plots.push(metrics[i].time_spent);
            categories.push(metrics[i].title);
        }

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

        c3.generate({
            data: {
                columns: [plots],
                type: 'bar'
            },
            bar: {
                width: {
                    ratio: 0.5
                }
            },
            axis: {
                x: {
                    type: 'category',
                    categories: categories
                },
                y: {
                    tick: {
                        format: KB.utils.formatDuration
                    }
                }
            },
            legend: {
                show: false
            }
        });
    };
});