var myChart = Highcharts.chart('graph_2683', {
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/08/2020 10 Meter Air Pistol - 30 Shots',y:272},{name:'04/09/2020 10 Meter Air Pistol - 30 Shots',y:268},{name:'04/10/2020 10 Meter Air Pistol - 30 Shots',y:281},{name:'04/13/2020 10 Meter Air Pistol - 30 Shots',y:275},{name:'04/14/2020 10 Meter Air Pistol - 30 Shots',y:278},{name:'04/16/2020 10 Meter Air Pistol - 30 Shots',y:284},{name:'04/17/2020 10 Meter Air Pistol - 30 Shots',y:282},{name:'04/20/2020 10 Meter Air Pistol - 30 Shots',y:286},{name:'04/21/2020 10 Meter Air Pistol - 30 Shots',y:275},{name:'04/23/2020 10 Meter Air Pistol - 30 Shots',y:284},{name:'04/28/2020 10 Meter Air Pistol - 30 Shots',y:279},{name:'05/02/2020 10 Meter Air Pistol - 30 Shots',y:286},]
}]
});