Dealing with pie chart label overlap - Javascript highcharts

Javascript examples for highcharts:Pie Chart

Description

Dealing with pie chart label overlap

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts test tool</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-git.js"></script> 
      <script type="text/javascript">
    $(function(){//from www.ja  v a2 s .  com
var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container',
        type: 'pie'
    },
    series: [{
        data: [1,2,3,4,5,6,7,8,9],
        startAngle: 90
    }]
});
    });

      </script> 
   </head> 
   <body> 
      <script src="https://github.highcharts.com/highcharts.js"></script> 
      <div id="container" style="height: 300px"></div>  
   </body>
</html>

Related Tutorials