导出时高亮显示隐藏/删除注释按钮

时间:2017-02-07 08:08:05

标签: javascript jquery highcharts

将图表导出为PDF / PNG时,是否有任何属性可以删除/隐藏注释按钮。 请参阅此小提琴link

exporting: {
                        buttons: {
                            contextButton: {
                                    menuItems: [
                                    {
                                        textKey: 'downloadPDF',
                                        onclick: function () {
                                            this.exportChart({
                                                type: 'application/pdf'
                                            });
                                        }
                                    }]
                            }
                        }
                    }

Export with Annotations

1 个答案:

答案 0 :(得分:1)

您需要在导出选项中将annotationsOptions.enabledButtons设置为false。

 exporting: {
          chartOptions: {
            annotationsOptions: {
              enabledButtons: false
            }
          },

示例:http://jsfiddle.net/4s57pwns/4/