highcharts Demo

by park kyungdoo

HTML

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

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'bar'
        },
        title: {
            text: 'Fruit Consumption'
        },
        xAxis: {
            categories: ['Apples', 'Bananas', 'Oranges']
        },
        series: [{
            name: 'park',
            data: [102, 34, 5945]
        }, {
            name: 'kim',
            data: [5565, 72456, 3345]
        }, {
            name: 'oh',
            data: [5124, 7434, 3324]
        }],
    });
});