Highcharts Demo

author(s): Marensius Bae Pettersen

by shivajyothibalavikas

HTML

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

<div id="container"></div>

CSS

#container {
    height: 400px;
}

JavaScript

Highcharts.chart('container', {

    chart: {
        polar: true
    },
    xAxis: {
        labels: {
            allowOverlap: false
        },
        categories: ["Australia", "Austria", "Belgium", "Canada", "Denmark", "Finland", "France", "Germany", "Hong Kong", "Ireland", "Israel", "Italy", "Japan", "Netherlands", "New Zealand Country", "Norway", "Philippines", "Poland", "Portugal", "Russia", "Singapore", "South Africa", "Spain", "Sweden", "Switzerland", "UK", "USA","Hong Kong", "Ireland", "Israel", "Italy", "Japan", "Netherlands", "New Zealand Count1ry", "N1orway", "Philip1pines", "Pol1and", "Por1tugal", "R1ussia", "Sin1gapore", "South 1Africa", "Spain", "Sw1eden", "Switzerla1nd", "UK1", "US1A"]
    },
    series: [{
        data: [
            5, 3, 2, 4, 5, 3, 2, 4, 2, 3, 4, 3,
            2, 4, 5, 6, 3, 2, 4, 5, 3, 5, 4, 2, 4, 5, 5
        ]
    }]

});