Highcharts Demo

author(s): Torstein Hønsi

by pradeep

HTML

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

JavaScript

$(function () {
    new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            type: 'pie',
            height: 450,
            width: 450
        },

        series: [{
            innerSize: '60%',
            data: [
                {name: 'Yellow Slice', y: 50, color: 'yellow'},
                {name: 'Red Slice', y: 10, color: 'red' },
                {name: 'Blue Slice', y: 33, color: 'blue'},
                {name: 'Green Slice', y: 20, color: 'green'}
            ]
        }]
    });
});