2-Programms Bullet chrts
by Kondal Durgam
HTML
<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/modules/exporting.js"></script>
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'pie'
},
title: {
text: ''
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
xAxis: {
labels:{
enabled:false//default is true
},
categories: [
]
},
yAxis: [{
min: 0,
title: {
text: ''
}
}, {
title: {
text: ''
},
opposite: true
}],
legend: {
shadow: false
},
tooltip: {
shared: true
},
plotOptions: {
pie: {
grouping: false,
shadow: false,
borderWidth: 0
}
},
series: [{
name: 'Training',
showInLegend: false,
color: 'red',
data: [66593],
size: '100%',
innerSize: '90%',
width:25,
showInLegend: true,
dataLabels: {
enabled: false
},
pointPadding: 0.3,
pointPlacement: -0.2
}, {
name: 'Achieved',
showInLegend: false,
color: 'red',
data: [47551],
size: '100%',
innerSize: '80%',
width:25,
showInLegend: true,
dataLabels: {
enabled: false
},
pointPadding: 0.1,
pointPlacement: -0.4
}, {
name: 'Training',
showInLegend: false,
color: 'rgb(60,60,200)',
data: [40000,30000],
size: '100%',
innerSize: '70%',
showInLegend: true,
dataLabels: {
enabled: false
},
pointPadding: 0.3,
pointPlacement: 0.2,
}, {
name: 'Achieved',
showInLegend: false,
color: 'rgb(120,180,220)',
data: [20035,15400],
size: '100%',
innerSize: '70%',
...