easyJet trend - airports mobile
by Danielle Parkinson
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'line',
backgroundColor: '#fff',
style: {
fontFamily: 'Open Sans',
color: '#2a2a2a'
},
height: 270,
width: 300
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
title: {
text: ' '
},
subtitle: {
text: ' '
},
xAxis: {
categories: ['Jun 17', 'Jul 17', 'Aug 17', 'Sep 17', 'Oct 17', 'Nov 17', 'Dec 17', 'Jan 18', 'Feb 18', 'Mar 18', 'Apr 18', 'May 18', 'Jun 18'],
labels: {
style: {
color: '#2a2a2a',
fontSize: '14px',
fontFamily: 'Open Sans'
}
},
tickLength: 0
},
yAxis: {
title: {
text: ' '
},
tickInterval: 10,
gridLineColor: '#aec4db',
labels: {
style: {
color: '#2a2a2a',
fontSize: '14px',
fontFamily: 'Open Sans'
}
}
},
tooltip: {
pointFormat: '{series.name} produced <b>{point.y:,.0f}</b><br/>warheads in {point.x}'
},
plotOptions: {
area: {
marker: {
enabled: false,
symbol: 'circle',
radius: 2,
states: {
hover: {
enabled: true
}
}
}
}
},
legend: {
itemStyle: {
color: '#333',
fontSize: '14px',
fontFamily: 'Open Sans',
fontWeight: 'normal'
}
},
series: [{
name: 'Manchester',
color: '#ff4600 ',
data: [65, 63, 76, 85, 82, 81, 80, 76, 79, 79, 78, 73,72],
marker: {
radius: 3,
fillColor: '#fff',
lineColor: '#ff4600',
lineWidth: 2,
symbol:...