Radar label outside chart
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<div id="container" style="height: 600px; width:600px;"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
polar: true,
},
xAxis: {
labels: {
staggerLines: 5,
style: {
// width: 50
}
},
categories: [
'Comforts and soothes oneself',
'Gives me a feeling of tranquillity and rest',
'To celebrate something special',
'To enjoy the company of others',
'To feel attractive',
'To feel different and special',
'To feel high spirited',
'To feel refreshed',
'To feel relaxed and calm',
'To spend quality time with friends / family',
'To forget everyday worries',
' share the moments with friends']
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
});