Highcharts test tool

by Santosh Giridhara

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 300px"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'area'
        },
        title: {
            text: 'Sentinel Technology Advancement Update'
        },
        xAxis: {
            categories: ['Highsoft', 'AngularJS', 'HTML5', 'Elastic Scale Technologies', 'RESTful APIs']
        },
        yAxis: {
            title: {
                text: 'Webinar'
            }
        },
        series: [
                 {
                    name: 'Santosh',
                    data: [1, 0, 4, 3, 5]
                 }, {
                    name: 'Tapas',
                    data: [5, 7, 3, 4, 1]
                 }, {
                    name: 'Puthali',
                    data: [1, 0, 4, 5, 3]
                 }, {
                    name: 'John',
                    data: [5, 7, 3, 1, 4]
                 }, {
                    name: 'Satya',
                    data: [1, 0, 4, 2, 6]
                 }
                ],
    });
});