我使用highcharts导出模块将图表导出为pdf。在我的代码中,我创建了一个片段chart
对象,可以在使用的不同gui控件上进行操作。它看起来像这样:
options = {
...
...
exporting:{
type: "application/pdf",
filename: "default",
buttons:{
exportButton:{
menuItems: null,
onclick:function(){
var fileName = "AAAA";//it's dynamic in reality.
alert(options.exporting.filename);//alerts "default"
options.exporting.filename = fileName;
alert(options.exporting.filename);//alerts "AAAA"
this.exportChart();
}
},
printButton: {
enabled: false
}
}
}
}
现在,只要点击导出按钮,下载的文件就会被命名为default.pdf
,而警报会显示该属性已被更改。
此外,由于第一个警报显示结果为default
(这不是默认值,实际上是chart
),因此我明确表示我引用了正确的属性,因此没有错误的可能性。将文件名设置为错误的属性。
任何人都可以解释这种情况或建议更改,让我下载带有动态名称的文件。?
答案 0 :(得分:7)
您可以更改文件的文件名。这是关于如何实现这一点的example。相关代码:
exportButton: {
menuItems: null,
onclick: function() {
chart.exportChart({filename: 'my-png'}, null);
}
},
这是另一个example,它显示了在导出和打印过程中可以控制的内容。相关代码:
$('#buttonExport').click(function() {
var e = document.getElementById("ExportOption");
var ExportAs = e.options[e.selectedIndex].value;
if(ExportAs == 'PNG')
{
chart.exportChart({type: 'image/png', filename: 'my-png'}, {subtitle: {text:''}});
}
if(ExportAs == 'JPEG')
{
chart.exportChart({type: 'image/jpeg', filename: 'my-jpg'}, {subtitle: {text:''}});
}
if(ExportAs == 'PDF')
{
chart.exportChart({type: 'application/pdf', filename: 'my-pdf'}, {subtitle: {text:''}});
}
if(ExportAs == 'SVG')
{
chart.exportChart({type: 'image/svg+xml', filename: 'my-svg'}, {subtitle: {text:''}});
}
});
$('#buttonPrint').click(function() {
chart.setTitle(null, { text: ' ' });
chart.print();
chart.setTitle(null, { text: 'Click and drag in the plot area to zoom in' });
});
答案 1 :(得分:2)
你可以试试吗
exportButton:{
menuItems: null,
onclick:function(){
var fileName = "AAAA";//it's dynamic in reality.
this.exportChart({filename : fileName});
}
}
exportChart方法也接受选项参数..