var myChart = Highcharts.chart('graph_1434', {
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 - 50 Foot Precision Pistol (Bullseye) - NRA Gallery Course',
data: [{name:'11/06/2016 .22 Precision Pistol',y:276},{name:'11/13/2016 .22 Precision Pistol',y:281},{name:'11/20/2016 .22 Precision Pistol',y:279},{name:'11/27/2016 .22 Precision Pistol',y:280},]
},{
name: 'Pistol - Air 10m - 30 shots',
data: [{name:'11/06/2016 10 Meter Air Pistol',y:262},{name:'11/13/2016 10 Meter Air Pistol',y:262},{name:'11/20/2016 10 Meter Air Pistol',y:266},{name:'11/27/2016 10 Meter Air Pistol',y:267},{name:'04/06/2020 10 Meter Air Pistol - 30 Shots',y:268},{name:'04/07/2020 10 Meter Air Pistol - 30 Shots',y:269},{name:'04/10/2020 10 Meter Air Pistol - 30 Shots',y:258},{name:'04/11/2020 10 Meter Air Pistol - 30 Shots',y:261},{name:'04/12/2020 10 Meter Air Pistol - 30 Shots',y:261},{name:'04/20/2020 10 Meter Air Pistol - 30 Shots',y:270},{name:'04/21/2020 10 Meter Air Pistol - 30 Shots',y:271},{name:'04/22/2020 10 Meter Air Pistol - 30 Shots',y:273},{name:'04/23/2020 10 Meter Air Pistol - 30 Shots',y:278},]
},{
name: 'Shotgun - American Trap - 25 Shot',
data: [{name:'11/06/2016 Trap',y:24},{name:'11/13/2016 Trap',y:23},{name:'11/20/2016 Trap',y:24},{name:'11/27/2016 Trap',y:25},]
}]
});