HighCharts:我可以直接调用导出功能吗?

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

是否可以直接调用HighCharts Exporting模块功能?我想在页面上的其他位置有一个按钮,可以调用通常从导出contextButton调用的“ downloadPNG”,“ downloadJPEG”等功能。

highcharts
1个回答
0
投票

是,您只需要使用exportChart方法,例如:

chart.exportChart({
    type: 'image/png'
});

实时演示: http://jsfiddle.net/BlackLabel/0mLy6du3/

API参考: https://api.highcharts.com/class-reference/Highcharts.Chart#exportChart

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