summaryrefslogtreecommitdiff
path: root/app/views/projects/graphs/ci/_build_times.haml
blob: 195f18afc7614725774dc5697e42a58be832e1d4 (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
%div
  %p.light
    Commit duration in minutes for last 30 commits

  %canvas#build_timesChart{height: 200}

:javascript
  var data = {
    labels : #{@charts[:build_times].labels.to_json},
    datasets : [
      {
        fillColor : "rgba(220,220,220,0.5)",
        strokeColor : "rgba(220,220,220,1)",
        barStrokeWidth: 1,
        barValueSpacing: 1,
        barDatasetSpacing: 1,
        data : #{@charts[:build_times].build_times.to_json}
      }
    ]
  }
  var ctx = $("#build_timesChart").get(0).getContext("2d");
  var options = { scaleOverlay: true, responsive: true, maintainAspectRatio: false };
  if (window.innerWidth < 768) {
    // Scale fonts if window width lower than 768px (iPad portrait)
    options.scaleFontSize = 8
  }
  new Chart(ctx).Bar(data, options);