Highcharts 3D餅圖

Highcharts 3D圖Highcharts 3D圖

以下實(shí)例演示了3D餅圖。

我們在前面的章節(jié)已經(jīng)了解了 Highcharts 基本配置語法。接下來讓我們來看下其他的配置。


配置

chart.options3d 配置

以下列出了 3D 圖的基本配置,設(shè)置 chart 的 type 屬性為 pie,options3d 選項(xiàng)可設(shè)置三維效果。

var chart = {
   type: 'pie',
   options3d: {
         enabled: true,     //顯示圖表是否設(shè)置為3D, 我們將其設(shè)置為 true
         alpha: 15,         //圖表視圖旋轉(zhuǎn)角度
         beta: 15,          //圖表視圖旋轉(zhuǎn)角度
         depth: 50,         //圖表的合計(jì)深度,默認(rèn)為100
         viewDistance: 25   //定義圖表的瀏覽長度
   }
};

實(shí)例

文件名:highcharts_3d_pie.htm

<html>
<head>
<meta charset="UTF-8" />
<title>Highcharts 教程 | W3Cschool教程(w3cschool.cn)</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js" rel="external nofollow" ></script>
<script src="http://code.highcharts.com/highcharts.js" rel="external nofollow" ></script>
<script src="http://code.highcharts.com/highcharts-3d.js" rel="external nofollow" ></script>  
</head>
<body>
<div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div>
<script language="JavaScript">
$(document).ready(function() {  
   var chart = {      
      type: 'pie',     
      options3d: {
         enabled: true,
         alpha: 45,
         beta: 0
      }
   };
   var title = {
      text: '2014 年特定網(wǎng)站各瀏覽器占有率'   
   };   
   var tooltip = {
      pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
   };

   var plotOptions = {
      pie: {
          allowPointSelect: true,
          cursor: 'pointer',
          depth: 35,
          dataLabels: {
             enabled: true,
             format: '{point.name}'
          }
      }
   };   
   var series= [{
         type: 'pie',
            name: 'Browser share',
            data: [
                ['Firefox',   45.0],
                ['IE',       26.8],
                {
                    name: 'Chrome',
                    y: 12.8,
                    sliced: true,
                    selected: true
                },
                ['Safari',    8.5],
                ['Opera',     6.2],
                ['Others',   0.7]
            ]
   }];     
      
   var json = {};   
   json.chart = chart; 
   json.title = title;       
   json.tooltip = tooltip; 
   json.plotOptions = plotOptions; 
   json.series = series;   
   $('#container').highcharts(json);
});
</script>
</body>
</html>

嘗試一下 ?

以上實(shí)例輸出結(jié)果為:

Highcharts 3D圖Highcharts 3D圖