1b7a2fc536
* fix commit duration graph * make graphs responsive * fix wrong padding * add a bit of explanation to colors Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
22 lines
625 B
Text
22 lines
625 B
Text
%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");
|
|
new Chart(ctx).Bar(data,{"scaleOverlay": true, responsive: true, maintainAspectRatio: false});
|