Report Page
by Kondal Durgam
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'bar'
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
title: {
text: 'ATTITUDE'
},
xAxis: {
categories: ['Allergy to Ambiguity', 'Rigidity', 'Conventionalism', 'Lack of self esteem','Fear of failure'],
labels: {
style: { "color": "#004784", "fontSize": "14px", "fontweight": "bold" }
}
},
yAxis: {
min: 0,
title: {
text: ''
},
gridLineColor: 'transparent'
},
legend: {
reversed: true
},
tooltip: {
headerFormat: '<span style="font-size:11px">{series.name}</span><br>',
pointFormat: '<span style="color:{point.color}"></span> <b>{point.y}%</b> of total 100%<br/>'
},
plotOptions: {
bar: {
borderRadius: 8
},
series: {
pointWidth:15
},
},
series: [{
showInLegend: false,
name: ' ',
color:'#70d8ff',
data: [50, 30, 40, 70]
}]
});