Highcharts Demo
author(s): Torstein Hønsi
by Amit Sinha
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>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<div id="container" style="min-width: 310px; max-width: 400px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
polar: true
},
credits:{
enabled: false
},
title: {
text: 'Radar Chart'
},
pane: {
startAngle: 0,
endAngle: 360
},
xAxis: {
tickInterval: 20,
min: 0,
max: 100,
labels: {
format: '{value}°'
}
},
yAxis: {
min: 0
},
plotOptions: {
series: {
pointStart: 0,
pointInterval: 45,
lineWidth: 0,
},
column: {
pointPadding: 0,
groupPadding: 0
}
},
series: [{
type: 'line',
name: 'Legal and Compliance Risks',
data: [8, 7, 6, 5, 4, 3, 2, 1],
//pointPlacement: 'between'
}, {
type: 'line',
name: 'Strategic Risks',
data: [1, 2, 3, 4, 5, 6, 7, 8]
}, {
type: 'line',
name: 'Financial Risks',
data: [1, 8, 2, 7, 3, 6, 4, 5]
}]
});