var myChart = Highcharts.chart('graph_2954', {
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:'09/15/2021 Standing Air Rifle',y:585},{name:'09/30/2021 Standing Air Rifle - 60 Shots',y:576},{name:'09/30/2021 Standing Air Rifle',y:582},{name:'11/30/2021 Standing Air Rifle - 60 Shots',y:580},]
},{
name: 'Rifle - Smallbore Metric 3 Position 50ft Half Course',
data: [{name:'09/15/2021 3 Position Smallbore Rifle',y:547},{name:'09/30/2021 3 Position Smallbore Rifle',y:557},]
},{
name: 'Rifle - Smallbore Metric Standing IRONS (4x10)',
data: [{name:'09/30/2021 50 Foot Standing Smallbore Rifle - IRONS',y:369},]
},{
name: 'Rifle - Smallbore Metric 3 Position IRONS 50ft Half Course',
data: [{name:'09/30/2021 50 Foot 3 Position Smallbore Rifle - IRONS',y:553},]
},{
name: 'Rifle - Air - Precision Standing (3x10)',
data: [{name:'09/30/2021 Standing Air Rifle - 30 Shots',y:286},]
}]
});