var myChart = Highcharts.chart('graph_3043', {
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 - 25 Yard Precision Pistol (Bullseye) - NRA Short Course',
data: [{name:'01/30/2022 25 Yard Precision Pistol (Bullseye) - Short Course',y:259},{name:'01/31/2022 25 Yard Precision Pistol (Bullseye) - Short Course',y:253},{name:'02/06/2022 25 Yard Precision Pistol (Bullseye) - Short Course',y:263},{name:'02/13/2022 25 Yard Precision Pistol (Bullseye) - Short Course',y:268},{name:'02/20/2022 25 Yard Precision Pistol (Bullseye) - Short Course',y:273},{name:'02/27/2022 25 Yard Precision Pistol (Bullseye) - Short Course',y:260},{name:'03/06/2022 25 Yard Precision Pistol (Bullseye) - Short Course',y:268},{name:'05/01/2022 25 Yard Precision Pistol (Bullseye)',y:266},{name:'05/08/2022 25 Yard Precision Pistol (Bullseye)',y:264},{name:'05/15/2022 25 Yard Precision Pistol (Bullseye)',y:268},{name:'05/22/2022 25 Yard Precision Pistol (Bullseye)',y:268},{name:'05/29/2022 25 Yard Precision Pistol (Bullseye)',y:263},{name:'06/05/2022 25 Yard Precision Pistol (Bullseye)',y:260},]
}]
});