当导出为PDF时,Highcharts的学分链接不起作用。

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

当我设置 credits.href Highcharts图表的选项,在浏览器中一切正常。信用文字是一个可点击的链接。

然而,如果图表被导出为PDF格式,则信用文本不是一个链接。

这是我的代码。

let exportOptions = {
  filename: filename, 
  fallbackToExportServer: false,
  type: 'application/pdf'          
};
let chartOptions= {
  credits: {
    enabled: true,
    href: "http://example.com",
    text: "TEMA-Q GmbH"
  }
}
chart.exportChartLocal(exportOptions, chartOptions);

是我做错了什么,还是学分URL根本无法导出为PDF?

highcharts
1个回答
2
投票

恐怕这个功能还没有实现。我在Highcharts Github问题频道上报告了这个想法,你可以关注并投票给这个帖子。

链接:https:/github https:/github.comhighchartshighchartsissues13594

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