P2M Performance測定システム
Movement Screen
クリアリングテスト
Movement Screen関連
Movement Control関連
Capacity Screen
Movement Control
Explosive Control
Impact Control
Postural Control
Performance Test
5-10-5テスト
結果
測定結果を入力してください
結果サマリー
Movement Screen
Capacity Screen
Performance Test
データ
const data = {
labels: [
‘Movement Control’,
‘Explosive Control’,
‘Impact Control’,
‘Postural Control’
],
datasets: [{
label: ‘Capacity Screen’,
data: [
movementControlPass ? 1 : 0,
explosiveControlPass ? 1 : 0,
impactControlPass ? 1 : 0,
carryEnergyPass ? 1 : 0
],
fill: true,
backgroundColor: ‘rgba(26, 90, 135, 0.2)’,
borderColor: ‘rgba(26, 90, 135, 1)’,
pointBackgroundColor: ‘rgba(26, 90, 135, 1)’,
pointBorderColor: ‘#fff’,
pointHoverBackgroundColor: ‘#fff’,
pointHoverBorderColor: ‘rgba(26, 90, 135, 1)’
}]
};
// チャートオプション
const options = {
scale: {
min: 0,
max: 1,
ticks: {
stepSize: 1,
display: false
}
},
scales: {
r: {
min: 0,
max: 1,
ticks: {
display: false
}
}
},
elements: {
line: {
borderWidth: 3
}
},
plugins: {
legend: {
display: false
}
}
};
// チャート