FCR - Data 1

by Mabuti

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        title: {
            text: 'FCR Chart'
        },
        xAxis: {
            categories: ['09/18', '09/19', '09/20', '09/21', '09/22', '09/23', '09/24']
        },
        series: [{
            type: 'column',
            name: 'Helpdesk Closed',
            data: [100-9,36,8,12,38,33,40]
        }, {
            type: 'column',
            name: 'Desktop Closed',
            data: [0,13,1,2,11,13,0]
        }, {
            type: 'spline',
            name: 'FCR',
            data: [1,73,89,86,78,72,1],
            marker: {
                lineWidth: 2,
                lineColor: Highcharts.getOptions().colors[3],
                fillColor: 'white'
            }
        }]
    });
});