如何将一些html文本添加到高图,同时将其导出为PNG,PDF,Jpeg?

时间:2017-03-29 07:05:06

标签: highcharts export

我使用过这些选项。

 exporting: {
    enabled: false,
    allowHtml:true
}

这是我的导出功能。

export(type: any) {
     this.graph.exportChart({ type: type });
  }

1 个答案:

答案 0 :(得分:0)

如果您只想导出(添加标题),请使用

this link

 exporting: {
    chartOptions: {
      chart: {
        events: {
          load: function() {
            var dynamic = document.getElementById('dynamic').value
            this.setTitle({
              text: dynamic
            });
          }
        }
      },
      title: {
        align: 'right',
      }
    }
  },