Javascript examples for highcharts:Pie Chart
avoid overlapping of dataLabels in pie chart
<html> <head> <title>Highcharts Demo</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(function () {/*from www . jav a2s .c o m*/ $('#container').highcharts({ chart: { type: 'pie' }, plotOptions: { }, series: [{ data: [ ['Firefox', 44.2], ['IE7', 26.6], ['IE6', 20], ['Chrome browser', 1.1], ['Other browsers', 1.4] ] }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <div id="container" style="height: 400px; width: 500"></div> </body> </html>