2017-10-12 58 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