2016-06-23 17:21:18 +08:00
|
|
|
<script>
|
2016-06-23 17:40:27 +08:00
|
|
|
// sqale_rating
|
2016-06-23 17:21:18 +08:00
|
|
|
$(function () {
|
2016-06-23 17:40:27 +08:00
|
|
|
$('#container_sqale_rating').highcharts({
|
2016-06-23 17:21:18 +08:00
|
|
|
|
|
|
|
chart: {
|
|
|
|
type: 'gauge',
|
|
|
|
plotBackgroundColor: null,
|
|
|
|
plotBackgroundImage: null,
|
|
|
|
plotBorderWidth: 0,
|
|
|
|
plotShadow: false
|
|
|
|
},
|
|
|
|
title: false,
|
|
|
|
pane: {
|
|
|
|
startAngle: -150,
|
|
|
|
endAngle: 150,
|
|
|
|
background: [{
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#FFF'],
|
|
|
|
[1, '#333']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '109%'
|
|
|
|
}, {
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#333'],
|
|
|
|
[1, '#FFF']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 1,
|
|
|
|
outerRadius: '107%'
|
|
|
|
}, {
|
|
|
|
// default background
|
|
|
|
}, {
|
|
|
|
backgroundColor: '#DDD',
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '105%',
|
|
|
|
innerRadius: '103%'
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
// the value axis
|
|
|
|
yAxis: {
|
|
|
|
min: 0,
|
2016-06-23 17:40:27 +08:00
|
|
|
max: 100,
|
2016-06-23 17:21:18 +08:00
|
|
|
minorTickInterval: 'auto',
|
|
|
|
minorTickWidth: 1,
|
|
|
|
minorTickLength: 10,
|
|
|
|
minorTickPosition: 'inside',
|
|
|
|
minorTickColor: '#666',
|
|
|
|
tickPixelInterval: 30,
|
|
|
|
tickWidth: 2,
|
|
|
|
tickPosition: 'inside',
|
|
|
|
tickLength: 10,
|
|
|
|
tickColor: '#666',
|
|
|
|
labels: {
|
|
|
|
step: 2,
|
|
|
|
rotation: 'auto'
|
|
|
|
},
|
|
|
|
// title: {
|
|
|
|
// text: 'km/h'
|
|
|
|
// },
|
|
|
|
plotBands: [{
|
|
|
|
from: 0,
|
2016-06-23 17:40:27 +08:00
|
|
|
to: 5,
|
2016-06-23 17:21:18 +08:00
|
|
|
color: '#55BF3B' // green
|
|
|
|
}, {
|
2016-06-23 17:40:27 +08:00
|
|
|
from: 6,
|
|
|
|
to: 10,
|
|
|
|
color: '#adde18' // yellow
|
|
|
|
}, {
|
|
|
|
from: 11,
|
|
|
|
to: 20,
|
|
|
|
color: '#DDDF0D' // red
|
|
|
|
}, {
|
|
|
|
from: 21,
|
|
|
|
to: 50,
|
|
|
|
color: '#df8538' // yellow
|
|
|
|
}, {
|
|
|
|
from: 51,
|
|
|
|
to: 100,
|
|
|
|
color: '#DF5353' // yellow
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
// delete hightcharts.com
|
|
|
|
credits:{
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
series: [{
|
|
|
|
name: '代码质量',
|
2016-07-08 16:19:33 +08:00
|
|
|
data: [<%= @ha["sqale_rating"].nil? ? 0 : @ha["sqale_rating"] %>]
|
2016-06-23 17:40:27 +08:00
|
|
|
// tooltip: {
|
|
|
|
// valueSuffix: ' km/h'
|
|
|
|
// }
|
|
|
|
}]
|
|
|
|
|
|
|
|
},
|
|
|
|
// Add some life
|
|
|
|
function (chart) {
|
2016-06-24 13:00:02 +08:00
|
|
|
// if (!chart.renderer.forExport) {
|
|
|
|
// setInterval(function () {
|
|
|
|
// var point = chart.series[0].points[0],
|
|
|
|
// newVal,
|
|
|
|
// inc = Math.round((Math.random() - 0.5) * 20);
|
|
|
|
//
|
|
|
|
// newVal = point.y + inc;
|
|
|
|
// if (newVal < 0 || newVal > 200) {
|
|
|
|
// newVal = point.y - inc;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// point.update(newVal);
|
|
|
|
//
|
|
|
|
// }, 3000);
|
|
|
|
// }
|
2016-06-23 17:40:27 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-06-23 18:24:22 +08:00
|
|
|
|
2016-06-23 17:40:27 +08:00
|
|
|
// function_complexity
|
|
|
|
$(function () {
|
|
|
|
$('#container_function_complexity').highcharts({
|
|
|
|
|
|
|
|
chart: {
|
|
|
|
type: 'gauge',
|
|
|
|
plotBackgroundColor: null,
|
|
|
|
plotBackgroundImage: null,
|
|
|
|
plotBorderWidth: 0,
|
|
|
|
plotShadow: false
|
|
|
|
},
|
|
|
|
title: false,
|
|
|
|
pane: {
|
|
|
|
startAngle: -150,
|
|
|
|
endAngle: 150,
|
|
|
|
background: [{
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#FFF'],
|
|
|
|
[1, '#333']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '109%'
|
|
|
|
}, {
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#333'],
|
|
|
|
[1, '#FFF']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 1,
|
|
|
|
outerRadius: '107%'
|
|
|
|
}, {
|
|
|
|
// default background
|
|
|
|
}, {
|
|
|
|
backgroundColor: '#DDD',
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '105%',
|
|
|
|
innerRadius: '103%'
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
// the value axis
|
|
|
|
yAxis: {
|
|
|
|
min: 0,
|
2016-06-23 18:24:22 +08:00
|
|
|
max: 30,
|
2016-06-23 17:40:27 +08:00
|
|
|
minorTickInterval: 'auto',
|
|
|
|
minorTickWidth: 1,
|
|
|
|
minorTickLength: 10,
|
|
|
|
minorTickPosition: 'inside',
|
|
|
|
minorTickColor: '#666',
|
|
|
|
tickPixelInterval: 30,
|
|
|
|
tickWidth: 2,
|
|
|
|
tickPosition: 'inside',
|
|
|
|
tickLength: 10,
|
|
|
|
tickColor: '#666',
|
|
|
|
labels: {
|
|
|
|
step: 2,
|
|
|
|
rotation: 'auto'
|
|
|
|
},
|
|
|
|
// title: {
|
|
|
|
// text: 'km/h'
|
|
|
|
// },
|
|
|
|
plotBands: [{
|
|
|
|
from: 0,
|
|
|
|
to: 10,
|
|
|
|
color: '#55BF3B' // green
|
|
|
|
}, {
|
|
|
|
from: 11,
|
|
|
|
to: 15,
|
2016-06-23 17:21:18 +08:00
|
|
|
color: '#DDDF0D' // yellow
|
|
|
|
}, {
|
2016-06-23 17:40:27 +08:00
|
|
|
from: 16,
|
|
|
|
to: 30,
|
2016-06-23 17:21:18 +08:00
|
|
|
color: '#DF5353' // red
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
// delete hightcharts.com
|
|
|
|
credits:{
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
series: [{
|
2016-06-23 17:40:27 +08:00
|
|
|
name: '复杂度',
|
2016-07-08 16:19:33 +08:00
|
|
|
data: [<%= @ha["function_complexity"].nil? ? 0 : @ha["function_complexity"] %>]
|
2016-06-23 17:21:18 +08:00
|
|
|
// tooltip: {
|
|
|
|
// valueSuffix: ' km/h'
|
|
|
|
// }
|
|
|
|
}]
|
|
|
|
|
|
|
|
},
|
|
|
|
// Add some life
|
|
|
|
function (chart) {
|
2016-06-24 13:00:02 +08:00
|
|
|
// if (!chart.renderer.forExport) {
|
|
|
|
// setInterval(function () {
|
|
|
|
// var point = chart.series[0].points[0],
|
|
|
|
//// newVal,
|
|
|
|
//// inc = Math.round((Math.random() - 0.5) * 20);
|
|
|
|
//
|
|
|
|
//// newVal = point.y + inc;
|
|
|
|
//// if (newVal < 0 || newVal > 200) {
|
|
|
|
//// newVal = point.y - inc;
|
|
|
|
//// }
|
|
|
|
//
|
|
|
|
//// point.update(newVal);
|
|
|
|
//
|
|
|
|
// }, 3000);
|
|
|
|
// }
|
2016-06-23 17:21:18 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-06-23 17:40:27 +08:00
|
|
|
// duplicated_lines_density
|
2016-06-23 17:21:18 +08:00
|
|
|
$(function () {
|
2016-06-23 17:40:27 +08:00
|
|
|
$('#container_duplicated_lines_density').highcharts({
|
2016-06-23 17:21:18 +08:00
|
|
|
|
|
|
|
chart: {
|
|
|
|
type: 'gauge',
|
|
|
|
plotBackgroundColor: null,
|
|
|
|
plotBackgroundImage: null,
|
|
|
|
plotBorderWidth: 0,
|
|
|
|
plotShadow: false
|
|
|
|
},
|
|
|
|
title: false,
|
|
|
|
pane: {
|
|
|
|
startAngle: -150,
|
|
|
|
endAngle: 150,
|
|
|
|
background: [{
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#FFF'],
|
|
|
|
[1, '#333']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '109%'
|
|
|
|
}, {
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#333'],
|
|
|
|
[1, '#FFF']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 1,
|
|
|
|
outerRadius: '107%'
|
|
|
|
}, {
|
|
|
|
// default background
|
|
|
|
}, {
|
|
|
|
backgroundColor: '#DDD',
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '105%',
|
|
|
|
innerRadius: '103%'
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
xAxis: {
|
|
|
|
style:{
|
|
|
|
fontSize: '18px'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// the value axis
|
|
|
|
yAxis: {
|
|
|
|
min: 0,
|
|
|
|
max: 100,
|
|
|
|
minorTickInterval: 'auto',
|
|
|
|
minorTickWidth: 1,
|
|
|
|
minorTickLength: 10,
|
|
|
|
minorTickPosition: 'inside',
|
|
|
|
minorTickColor: '#666',
|
|
|
|
tickPixelInterval: 30,
|
|
|
|
tickWidth: 2,
|
|
|
|
tickPosition: 'inside',
|
|
|
|
tickLength: 10,
|
|
|
|
tickColor: '#666',
|
|
|
|
labels: {
|
|
|
|
step: 2,
|
|
|
|
rotation: 'auto'
|
|
|
|
},
|
|
|
|
// title: {
|
|
|
|
// text: 'km/h'
|
|
|
|
// },
|
|
|
|
plotBands: [{
|
|
|
|
from: 0,
|
2016-06-23 17:40:27 +08:00
|
|
|
to: 30,
|
2016-06-23 17:21:18 +08:00
|
|
|
color: '#55BF3B' // green
|
|
|
|
}, {
|
2016-06-23 17:40:27 +08:00
|
|
|
from: 31,
|
2016-06-23 17:21:18 +08:00
|
|
|
to: 50,
|
2016-06-23 17:40:27 +08:00
|
|
|
color: '#DDDF0D' // red
|
2016-06-23 17:21:18 +08:00
|
|
|
}, {
|
|
|
|
from: 51,
|
|
|
|
to: 100,
|
|
|
|
color: '#DF5353' // yellow
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
// delete hightcharts.com
|
|
|
|
credits:{
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
series: [{
|
2016-06-23 17:40:27 +08:00
|
|
|
name: '重复率',
|
2016-07-08 16:19:33 +08:00
|
|
|
data: [<%= @ha["duplicated_lines_density"].nil? ? 0 : @ha["duplicated_lines_density"] %>]
|
2016-06-23 17:21:18 +08:00
|
|
|
// tooltip: {
|
|
|
|
// valueSuffix: ' km/h'
|
|
|
|
// }
|
|
|
|
}]
|
|
|
|
|
|
|
|
},
|
|
|
|
// Add some life
|
|
|
|
function (chart) {
|
2016-06-24 13:00:02 +08:00
|
|
|
// if (!chart.renderer.forExport) {
|
|
|
|
// setInterval(function () {
|
|
|
|
// var point = chart.series[0].points[0],
|
|
|
|
// newVal,
|
|
|
|
// inc = Math.round((Math.random() - 0.5) * 20);
|
|
|
|
//
|
|
|
|
// newVal = point.y + inc;
|
|
|
|
// if (newVal < 0 || newVal > 200) {
|
|
|
|
// newVal = point.y - inc;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// point.update(newVal);
|
|
|
|
//
|
|
|
|
// }, 3000);
|
|
|
|
// }
|
2016-06-23 17:21:18 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-06-23 17:40:27 +08:00
|
|
|
// comment_lines_density
|
2016-06-23 17:21:18 +08:00
|
|
|
$(function () {
|
2016-06-23 17:40:27 +08:00
|
|
|
$('#container_comment_lines_density').highcharts({
|
2016-06-23 17:21:18 +08:00
|
|
|
|
|
|
|
chart: {
|
|
|
|
type: 'gauge',
|
|
|
|
plotBackgroundColor: null,
|
|
|
|
plotBackgroundImage: null,
|
|
|
|
plotBorderWidth: 0,
|
|
|
|
plotShadow: false
|
|
|
|
},
|
|
|
|
title: false,
|
|
|
|
pane: {
|
|
|
|
startAngle: -150,
|
|
|
|
endAngle: 150,
|
|
|
|
background: [{
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#FFF'],
|
|
|
|
[1, '#333']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '109%'
|
|
|
|
}, {
|
|
|
|
backgroundColor: {
|
|
|
|
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
|
|
|
stops: [
|
|
|
|
[0, '#333'],
|
|
|
|
[1, '#FFF']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
borderWidth: 1,
|
|
|
|
outerRadius: '107%'
|
|
|
|
}, {
|
|
|
|
// default background
|
|
|
|
}, {
|
|
|
|
backgroundColor: '#DDD',
|
|
|
|
borderWidth: 0,
|
|
|
|
outerRadius: '105%',
|
|
|
|
innerRadius: '103%'
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
xAxis: {
|
2016-06-23 17:40:27 +08:00
|
|
|
title: {
|
|
|
|
text: '复杂度',
|
|
|
|
x: -23, //center设置标题的位置
|
|
|
|
y: 6
|
|
|
|
},
|
2016-06-23 17:21:18 +08:00
|
|
|
style:{
|
|
|
|
fontSize: '18px'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// the value axis
|
|
|
|
yAxis: {
|
|
|
|
min: 0,
|
|
|
|
max: 100,
|
|
|
|
minorTickInterval: 'auto',
|
|
|
|
minorTickWidth: 1,
|
|
|
|
minorTickLength: 10,
|
|
|
|
minorTickPosition: 'inside',
|
|
|
|
minorTickColor: '#666',
|
|
|
|
tickPixelInterval: 30,
|
|
|
|
tickWidth: 2,
|
|
|
|
tickPosition: 'inside',
|
|
|
|
tickLength: 10,
|
|
|
|
tickColor: '#666',
|
|
|
|
labels: {
|
|
|
|
step: 2,
|
|
|
|
rotation: 'auto'
|
|
|
|
},
|
|
|
|
// title: {
|
|
|
|
// text: 'km/h'
|
|
|
|
// },
|
|
|
|
plotBands: [{
|
|
|
|
from: 0,
|
|
|
|
to: 20,
|
2016-06-24 12:17:05 +08:00
|
|
|
color: '#DDDF0D' // green
|
2016-06-23 17:21:18 +08:00
|
|
|
}, {
|
|
|
|
from: 21,
|
|
|
|
to: 50,
|
2016-06-24 12:17:05 +08:00
|
|
|
color: '#55BF3B' // red
|
2016-06-23 17:21:18 +08:00
|
|
|
}, {
|
|
|
|
from: 51,
|
|
|
|
to: 100,
|
|
|
|
color: '#DF5353' // yellow
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
|
|
|
|
// delete hightcharts.com
|
|
|
|
credits:{
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
series: [{
|
2016-06-23 17:40:27 +08:00
|
|
|
name: '质量等级',
|
2016-07-08 16:19:33 +08:00
|
|
|
data: [<%= @ha["comment_lines_density"].nil? ? 0 : @ha["comment_lines_density"] %>]
|
2016-06-23 17:21:18 +08:00
|
|
|
// tooltip: {
|
|
|
|
// valueSuffix: ' km/h'
|
|
|
|
// }
|
|
|
|
}]
|
|
|
|
|
|
|
|
},
|
|
|
|
// Add some life
|
|
|
|
function (chart) {
|
2016-06-24 13:00:02 +08:00
|
|
|
// if (!chart.renderer.forExport) {
|
|
|
|
// setInterval(function () {
|
|
|
|
// var point = chart.series[0].points[0],
|
|
|
|
// newVal,
|
|
|
|
// inc = Math.round((Math.random() - 0.5) * 20);
|
|
|
|
//
|
|
|
|
// newVal = point.y + inc;
|
|
|
|
// if (newVal < 0 || newVal > 200) {
|
|
|
|
// newVal = point.y - inc;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// point.update(newVal);
|
|
|
|
//
|
|
|
|
// }, 3000);
|
|
|
|
// }
|
2016-06-23 17:21:18 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|