JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 400px; max-width: 600px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
polar: true,
type: 'line'
},
title: {
text: 'The Hex',
x: -80
},
pane: {
size: '80%'
},
xAxis: {
categories: ['BX', 'UX', 'VX', 'AX', 'IX', 'QX'],
tickmarkPlacement: 'on',
lineWidth: 0
},
yAxis: {
gridLineInterpolation: 'polygon',
lineWidth: 0,
min: 0
},
tooltip: {
shared: true,
pointFormat: '<span style="color:{series.color}">{series.name}: <b>{point.y:,.0f}</b><br/>'
},
legend: {
align: 'right',
verticalAlign: 'top',
y: 70,
layout: 'vertical'
},
series: [{
type: 'line',
name: 'Introverted Full-Stack Engineer',
data: [10, 10, 0, 95, 90, 65],
pointPlacement: 'on'
}, {
type: 'line',
name: 'Non-Technical',
data: [95, 25, 10, 0, 0, 50],
pointPlacement: 'on'
}, {
type: 'line',
name: 'Visual Designer',
data: [30, 50, 95, 5, 0, 20],
pointPlacement: 'on'
}, {
type: 'area',
name: 'AR3',
data: [75, 80, 30, 80, 50, 70],
pointPlacement: 'on'
}]
});
});