var myChart = Highcharts.chart('graph_2684', {
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/10/2020 10 Meter Air Pistol - 30 Shots',y:278},{name:'04/11/2020 10 Meter Air Pistol - 30 Shots',y:271},{name:'04/12/2020 10 Meter Air Pistol - 30 Shots',y:272},{name:'05/01/2020 10 Meter Air Pistol - 30 Shots',y:265},{name:'05/03/2020 Air Pistol',y:264},{name:'05/24/2020 Air Pistol',y:273},{name:'05/31/2020 Air Pistol',y:257},]
}]
});