我使用下面的插件以Excel格式高圖表導出:highcharts出口XLS在客戶端文件
它工作得很好,但是當我嘗試在客戶端模式下輸出被添加下面JS來頁面
<script src="http://code.highcharts.com/modules/offline-exporting.js"></script>
導出文件的所有其他選項消失(XLS,數據表,..),並且只剩下默認選項。
是否有解決方案,或者是否有另一個插件可用於做這兩個工作?
我使用下面的插件以Excel格式高圖表導出:highcharts出口XLS在客戶端文件
它工作得很好,但是當我嘗試在客戶端模式下輸出被添加下面JS來頁面
<script src="http://code.highcharts.com/modules/offline-exporting.js"></script>
導出文件的所有其他選項消失(XLS,數據表,..),並且只剩下默認選項。
是否有解決方案,或者是否有另一個插件可用於做這兩個工作?
您需要更改腳本的順序。離線導出模塊應該在導出模塊之後但在export-csv模塊之前加載。
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<script src="http://code.highcharts.com/modules/offline-exporting.js"></script>
<script src="http://highcharts.github.io/export-csv/export-csv.js"></script>
我發現了另一個libraray它結合了2個特徵(脫機出口+ XLS出口):
問題是不清楚 – Sajeetharan