<!doctype html>
<html lang="en">
<head>
  <script type="text/javascript" src="jquery-1.8.3.min.js"></script>
  <script type="text/javascript" src="highcharts.js"></script>
  <script type="text/javascript" src="exporting.js"></script>
  <script>
    //Javascript




$(function () {
    $('#container').highcharts({
        chart: {
            zoomType: 'xy'
        },
        title: {
            text: '޸ĳҪ'
        },
        subtitle: {
            text: ''
        },
        xAxis: [{
            categories: ['0', '1', '2', '3', '4', '5','6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24']
        }],
        yAxis: [{ // Primary yAxis
            labels: {
                format: '{value}',
                style: {
                    color: '#89A54E'
                }
            },
            title: {
                text: '',
                style: {
                    color: '#89A54E'
                }
            }
        }, { // Secondary yAxis
            title: {
                text: '',
                style: {
                    color: '#4572A7'
                }
            },
            labels: {
                format: '{value} ',
                style: {
                    color: '#4572A7'
                }
            },
            opposite: true
        }],
        tooltip: {
            shared: true
        },
        legend: {
            layout: 'vertical',
            align: 'left',
            x: 120,
            verticalAlign: 'top',
            y: 100,
            floating: true,
            backgroundColor: '#FFFFFF'
        },
        series: [{
            name: '',
            color: '#4572A7',
            type: 'column',
            yAxis: 1,
            data: [],
            tooltip: {
                valueSuffix: ' '
            }

        }, {
            name: '',
            color: '#89A54E',
            type: 'spline',
            data: [],
            tooltip: {
                valueSuffix: ''
            }
        }]
    });
});
				





 //Javascript

  </script>
</head>
<body>
  <div id="container" style="min-width:700px;height:310px"></div>
</body>
</html>