Last active
March 19, 2018 13:15
-
-
Save amelieykw/9421fd1fd8796c15085d776ab3b273a2 to your computer and use it in GitHub Desktop.
[Highcharts - Spider Web] #SpiderWebChart #Highcharts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> | |
<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="min-width: 400px; max-width: 800px; height: 600px; margin: 0 auto"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Highcharts.chart('container', { | |
chart: { | |
polar: true, | |
type: 'line', | |
backgroundColor: 'transparent' | |
}, | |
title: { | |
text: null, | |
}, | |
pane: { | |
size: '80%' | |
}, | |
xAxis: { | |
categories: ['Risk', 'Cost', 'Prod.P'], | |
tickmarkPlacement: 'on', | |
lineWidth: 0, | |
lineColor: 'red', | |
labels: { | |
style: { | |
fontSize: '30px', | |
fontWeight: 'bold', | |
color:'black' | |
}, | |
y: -16 | |
} | |
}, | |
yAxis: { | |
gridLineInterpolation: 'polygon', | |
lineWidth: 0, | |
min: 0, | |
}, | |
series: [{ | |
name: ' ', | |
data: [60, 40, 53], | |
dataLabels: { | |
enabled: true, | |
style: { | |
fontSize: '40px', | |
fontWeight: 'bold', | |
color: 'blue' | |
} | |
}, | |
pointPlacement: 'on' | |
}] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment