Highcharts Demo

author(s): Torstein Hønsi

by Bhabani Raju

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>

<div id="container" style="height: 400px"></div>

JavaScript

$(function () {
    Highcharts.chart('container', {
        chart: {
            type: 'pie'
        },

        xAxis: {
            categories: ['Green', 'Pink']
        },

        series: [{
            data: [{
                name: 'Point 1',
                color: '#00FF00',
                y: 8
            }, {
                name: 'Point 2',
                color: '#FF00FF',
                y: 5
            },
            
            {
                name: 'Point 3',
                color: '#FF00FF',
                y: 2
            }]
        }]
    });
});