我正在使用下面的代码将高图表导出为图像,想要保存在特定位置?你可以帮忙自动存储在自定义位置:例如: D:/ wamp / project / images /
$('#buttonExport').click(function() {
var e = document.getElementById("ExportOption");
var ExportAs = e.options[e.selectedIndex].value;
chart.exportChart({type: 'image/jpeg', filename: 'page1'}, {subtitle: {text:''}});
});
答案 0 :(得分:0)
Here是关于如何保存高亮度图表的非常好的总结。
另一种解决方法是在客户端使用javascript
调用Chart.getSVG()函数,然后通过ajax
将其发送到服务器。
var svg = chart.getSVG();
$.post({
url: 'server.com/upload',
data: {
svg: svg
}
});
在您的服务器中将其保存在您想要的任何地方。