highcharts在客户端导出XLS文件

时间:2017-01-04 09:43:17

标签: javascript jquery html asp.net highcharts

我使用下面的插件导出Excel格式的高级图表:

enter link description here

它运行良好但是当我尝试在客户端模式下导出时,将JS添加到页面

<script src="http://code.highcharts.com/modules/offline-exporting.js"></script>

导出文件的所有其他选项都会消失(XLS,数据表,..),只剩下默认选项。

是否有针对此案例的解决方案,或者是否有其他插件可用于执行这两项工作?

2 个答案:

答案 0 :(得分:0)

您需要更改脚本的顺序。导出模块后但在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>

示例:http://jsfiddle.net/cqjvD/1317/

答案 1 :(得分:0)

我找到了另一个结合了2个功能的图书馆(离线导出+ XLS导出):

HIGHCHARTS-EXPORT-CLIENTSIDE