var myChart = Highcharts.chart('graph_2477', {
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: 'Rifle - Air - Precision Standing (6 x 10)',
data: [{name:'05/31/2019 Standing Air Rifle - 60 Shots',y:583},{name:'01/07/2020 Standing Air Rifle - 60 Shots',y:578},{name:'01/14/2020 Standing Air Rifle - 60 Shots',y:576},]
},{
name: 'Rifle - Air - Precision Standing (3x10)',
data: [{name:'05/31/2019 Standing Air Rifle - 30 Shots',y:293},{name:'08/04/2019 Standing Air Rifle',y:296},{name:'08/11/2019 Standing Air Rifle',y:292},{name:'08/18/2019 Standing Air Rifle',y:291},{name:'08/25/2019 Standing Air Rifle',y:293},{name:'09/01/2019 Standing Air Rifle',y:297},{name:'09/08/2019 Standing Air Rifle',y:297},{name:'01/07/2020 Standing Air Rifle - 30 Shots',y:287},{name:'01/14/2020 Standing Air Rifle - 30 Shots',y:286},]
}]
});