var myChart = Highcharts.chart('graph_2670', {
chart: {
backgroundColor:'#ffffff',
type: 'spline'
},
credits: {enabled: false},
title: {
text: 'Shooting Performance'
},
subtitle: {
text: 'Individual Scores'
},
xAxis: {
title: {
text: 'Number of Competitions'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
yAxis: {
title: {
text: 'Score'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
headerFormat: '{series.name}
',
pointFormat: '\u25CF {point.name} Score:{point.y}
',
valueSuffix: ''
},
legend: {
layout: 'vertical',
align: 'center',
verticalAlign: 'bottom',
borderWidth: 0
},
series: [{
name: 'Pistol - Air 10m - 30 shots',
data: [{name:'04/13/2020 10 Meter Air Pistol - 30 Shots',y:279},{name:'04/14/2020 10 Meter Air Pistol - 30 Shots',y:283},{name:'04/16/2020 10 Meter Air Pistol - 30 Shots',y:283},{name:'04/17/2020 10 Meter Air Pistol - 30 Shots',y:283},]
},{
name: 'Rifle - Air - Precision Standing (3x10)',
data: [{name:'04/13/2020 Standing Air Rifle - 30 Shots',y:294},{name:'04/14/2020 Standing Air Rifle - 30 Shots',y:294},{name:'04/16/2020 Standing Air Rifle - 30 Shots',y:294},{name:'04/19/2020 Standing Air Rifle - 30 Shots',y:294},]
}]
});