Javascript examples for highcharts:Pie Chart
Semi-Pie Circle
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(function () {/* w ww . j a va 2 s. c om*/ $('#container').highcharts({ chart: { plotBackgroundColor: null, plotBorderWidth: 0, plotShadow: false }, title: { text: 'Browser<br>shares', align: 'center', verticalAlign: 'middle', y: 50 }, tooltip: { pointFormat: '{series.name}: <b>{point.y:.1f}%</b>' }, plotOptions: { pie: { dataLabels: { enabled: true, distance: -50, style: { fontWeight: 'bold', color: 'white', textShadow: '0px 1px 2px black' } }, startAngle: -90, endAngle: -9, center: ['50%', '75%'] } }, series: [{ type: 'pie', name: 'Browser share', innerSize: '50%', data: [ ['Firefox', 45.0] /*, ['IE', 26.8], ['Chrome', 12.8], ['Safari', 8.5], ['Opera', 6.2], ['Others', 0.7] */ ] }] }); }); </script> </head> <body> <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; height: 400px; margin: 0 auto"></div> </body> </html>