Highcharts Demo

author(s): Torstein Hønsi

by KSK Kushwah

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="width: 400px; height: 300px; margin: 0 auto"></div>

JavaScript

Highcharts.chart('container', {

    chart: {
        type: 'gauge'
    },

    pane: {
        startAngle: -150,
        endAngle: 150
    },


    yAxis: {
        min: 0,
        max: 100
    },

    plotOptions: {
        gauge: {
            dial: {
                radius: '100%',
                borderWidth: 1,
                baseWidth: 1,
                topWidth: 1,
                baseLength: '0%', // of radius
                rearLength: '0%'
            }
        }
    },


    series: [{
        data: [80]
    }]

});