2017-10-12 55 views
0

我正在使用HighCharts版本6.0.1。已经在本地为angularjs服务器设置了Highcharts用于导出图表。当从图表的右上角选择下载为png/jpeg/pdf时, 显示Highcharts演示页面,并且我将重定向到其他链接“https://export.highcharts.com/”。Highcharts导出时间停止使用angularjs导航到演示页面?

请让我知道这可能是什么原因。

我已添加此2个js链接。

<script src="https://code.highcharts.com/highcharts.js"></script> 
<script type="text/javascript" src="https://code.highcharts.com/modules/exporting.js"></script> 

回答

1

尝试使用离线exporting.js代替exporting.js

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

Full exemple 我希望帮助您

+0

感谢您的帮助,并给予重播 – user8527281