echarts 顯示下載按鈕,echarts 自定義按鈕,echarts 添加按鈕

echarts 顯示下載按鈕,echarts 自定義按鈕,echarts 添加按鈕html

 

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>echarts

©Copyright  蕃薯耀 2017年2月8日 星期三工具

http://www.cnblogs.com/fanshuyao/spa

 

1、echarts內置按鈕htm

echarts按鈕在工具欄。blog

內置有導出圖片,數據視圖,動態類型切換,數據區域縮放,重置五個工具。以下圖所示:圖片

 

按鈕的配置在toolbox下的feature屬性文檔

http://echarts.baidu.com/option.html#toolboxstring

 

一、保存爲圖片:saveAsImageit


 

文檔見:http://echarts.baidu.com/option.html#toolbox.feature.saveAsImage

 

二、數據視圖工具,能夠展示當前圖表所用的數據,編輯後能夠動態更新:dataView

文檔見:http://echarts.baidu.com/option.html#toolbox.feature.dataView

其它的再也不說了,本身到官網看文檔

 

下面的代碼顯示下載圖片按鈕及數據視圖按鈕:

 

 

Js代碼   收藏代碼
  1. toolbox: {  
  2.             //show: true,  
  3.             itemSize: 20,  
  4.             itemGap: 30,  
  5.             right: 50,  
  6.             feature: {  
  7.                 dataView: {show:true},  
  8.                 saveAsImage: {  
  9.                     //excludeComponents :['toolbox'],  
  10.                     pixelRatio: 2  
  11.                 }  
  12.             }  
  13. }  

 

2、echarts自定義按鈕

 

除了各個內置的工具按鈕外,還能夠自定義工具按鈕。

注意,自定義的工具名字,只能以 my 開頭,例以下例中的 myTool1,myTool2:

Js代碼   收藏代碼
  1. {  
  2.     toolbox: {  
  3.         feature: {  
  4.             myTool1: {  
  5.                 show: true,  
  6.                 title: '自定義擴展方法1',  
  7.                 icon: 'image://http://echarts.baidu.com/images/favicon.png',  
  8.                 onclick: function (){  
  9.                     alert('myToolHandler1')  
  10.                 }  
  11.             },  
  12.             myTool2: {  
  13.                 show: true,  
  14.                 title: '自定義擴展方法',  
  15.                 icon: 'image://http://echarts.baidu.com/images/favicon.png',  
  16.                 onclick: function (){  
  17.                     alert('myToolHandler2')  
  18.                 }  
  19.             }  
  20.         }  
  21.     }  
  22. }  

 

 

 

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

©Copyright  蕃薯耀 2017年2月8日 星期三

http://www.cnblogs.com/fanshuyao/

相關文章
相關標籤/搜索