var myChart = Highcharts.chart('graph_1761', {
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/06/2020 10 Meter Air Pistol - 30 Shots',y:269},{name:'04/07/2020 10 Meter Air Pistol - 30 Shots',y:269},{name:'04/08/2020 10 Meter Air Pistol - 30 Shots',y:272},{name:'04/09/2020 10 Meter Air Pistol - 30 Shots',y:277},{name:'04/13/2020 10 Meter Air Pistol - 30 Shots',y:271},{name:'04/14/2020 10 Meter Air Pistol - 30 Shots',y:270},{name:'04/16/2020 10 Meter Air Pistol - 30 Shots',y:275},{name:'04/17/2020 10 Meter Air Pistol - 30 Shots',y:273},]
}]
});