Query Manager success 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: 'Metrophobic',
            color: '#455a70'
        },
        height: 400,
        width: 1200
    },
    credits: {
    	enabled: false
    },
    exporting: {
    		enabled: false
    },
    title: {
        text: ' '
    },
    subtitle: {
        text: ' '
    },
    xAxis: {
        categories: ['May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', 'January', 'February', 'March', 'April'],
        labels: {
            style: {
                color: '#455a70',
                fontSize: '13px',
                fontFamily: 'Metrophobic'
            }
        },
        tickLength: 0
    },
    yAxis: {
        title: {
            text: ' '
        },
        tickInterval: 2,
        gridLineColor: '#aec4db',
        labels: {
            style: {
                color: '#455a70',
                fontSize: '13px',
                fontFamily: 'Metrophobic'
            }
        }
    },
    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: '#455a70',
                fontSize: '13px',
                fontFamily: 'Metrophobic',
                fontWeight: 'normal'
            }
    },
    series: [{
        name: 'Successful Queries',
        color: '#1abb9c',
        data: [55, 54, 56, 54, 55, 55, 56, 57, 59, 60, 58, 59],
        marker: {
        		radius: 4,
            fillColor: '#fff',
            lineColor: '#1abb9c',
            lineWidth: 2,
           ...