highchart导出按钮不显示

问题描述 投票:0回答:1

我正在用角图中的简单图形证明高位图表。但是导出按钮不显示。我在html页面中添加了脚本:

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

并在图表中添加属性:

export :true,
navigation: {
  buttonOptions: {
    align: 'right',
    verticalAlign: 'top',
    y: 0
  }
},

但是什么也没有。

这是应用程序网址:

https://stackblitz.com/edit/angular-hkncp8

highcharts
1个回答
0
投票

我认为您的通话中有错字,应该使用

exporting :true,
navigation: {
  buttonOptions: {
    align: 'right',
    verticalAlign: 'top',
    y: 0
  }
},

exporting : {
    enabled: true,
},
navigation: {
  buttonOptions: {
    align: 'right',
    verticalAlign: 'top',
    y: 0
  }
},

此外,我认为您的导入有问题,因为我对Angular不熟悉,因此无法正常工作。

© www.soinside.com 2019 - 2024. All rights reserved.