Highcharts 3D柱形圖

Highcharts 3D圖Highcharts 3D圖

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

我們?cè)谇懊娴恼鹿?jié)已經(jīng)了解了 Highcharts 基本配置語(yǔ)法。接下來(lái)讓我們來(lái)看下其他的配置。


配置

chart.options3d 配置

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

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

實(shí)例

文件名:highcharts_3d_column.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>
<div id="sliders">
<table>
   <tr><td>Alpha Angle</td><td><input id="R0" type="range" min="0" max="45" value="15"/> <span id="R0-value" class="value"></span></td></tr>
   <tr><td>Beta Angle</td><td><input id="R1" type="range" min="0" max="45" value="15"/> <span id="R1-value" class="value"></span></td></tr>
</table>
</div>
<script language="JavaScript">
$(document).ready(function() {  
   var chart = {
      renderTo: 'container',
      type: 'column',
      margin: 75,
      options3d: {
         enabled: true,
         alpha: 15,
         beta: 15,
         depth: 50,
         viewDistance: 25
      }
   };
   var title = {
      text: '圖表旋轉(zhuǎn)實(shí)例'   
   };
   var subtitle = {
      text: '通過(guò)拖動(dòng)下面的滑塊測(cè)試'  
   };
   
   var plotOptions = {
      column: {
         depth: 25
      }
   };
   var series= [{
      data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
   }];     
      
   var json = {};   
   json.chart = chart; 
   json.title = title;   
   json.subtitle = subtitle;    
   json.series = series;
   json.plotOptions = plotOptions;
   var highchart = new Highcharts.Chart(json);
  
   function showValues() {
      $('#R0-value').html(highchart.options.chart.options3d.alpha);
      $('#R1-value').html(highchart.options.chart.options3d.beta);
   }

   // Activate the sliders
   $('#R0').on('change', function () {
      highchart.options.chart.options3d.alpha = this.value;
      showValues();
      highchart.redraw(false);
   });
   $('#R1').on('change', function () {
      highchart.options.chart.options3d.beta = this.value;
      showValues();
      highchart.redraw(false);
   });

   showValues();
});
</script>
</body>
</html>

嘗試一下 ?

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

Highcharts 3D圖Highcharts 3D圖