highcharts-export-clientside不支持的导出格式

时间:2016-05-09 19:32:32

标签: angularjs pdf highcharts

我正在使用highcharts-ng,尝试进行客户端pdf下载并在此平台上继续获得不支持的导出格式:application / pdf。如果我使用highcharts服务器生成pdf,它可以正常工作。

options: {
  exporting: {
    type: 'application/pdf'
  }
},
func: function() {
    // button handler
    $('#vehicle-conversion-pdf-btn').click(function () {
        var chart = $('#vehicle-conversion').highcharts();
        chart.exportChart();
    });
}

我最后也在加载插件。

1 个答案:

答案 0 :(得分:1)

我有一个像这样的问题。 我已经将“highcharts-export-clientside.js”导入我的网页,但它没有用。 (来自this documentation

我的问题已修复此行:

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

您必须在html文件中输入以下内容:

<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>