easyJet trend

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: '#333'
        },
        height: 220,
        width: 880
    },
    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: '#333',
                fontSize: '13px',
                fontFamily: 'Open Sans'
            }
        },
        tickLength: 0
    },
    yAxis: {
        title: {
            text: ' '
        },
        //tickInterval: 5,
        gridLineColor: '#aec4db',
        labels: {
            style: {
                color: '#333',
                fontSize: '13px',
                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: '13px',
                fontFamily: 'Open Sans',
                fontWeight: 'normal'
            }
    },
    series: [{
        name: 'Bag policy meets needs',
        color: '#ff4600',
        data: [67, 65, 66, 71, 68, 62, 63, 64, 66, 67, 65, 75],
        marker: {
        		radius: 4,
            fillColor: '#fff',
            lineColor: '#ff4600',
            lineWidth: 2,
            symbol:...