使用 highcharts,您有一个内置按钮来下载当前图表(例如:http ://www.highcharts.com/demo/,此按钮:)。您可以将其另存为 PNG、JPEG、PDF 或 SVG。
我想要做的是创建一个链接,将图像保存在服务器上,而不是下载它。我怎么能那样做?
我想我必须修改exportChart
exporting.src.js 文件中的函数。它看起来像这样(但我不知道 javascript 足以做到这一点):
exportChart: function (options, chartOptions) {
var form,
chart = this,
svg = chart.getSVG(chartOptions);
// merge the options
options = merge(chart.options.exporting, options);
// create the form
form = createElement('form', {
method: 'post',
action: options.url
}, {
display: NONE
}, doc.body);
// add the values
each(['filename', 'type', 'width', 'svg'], function (name) {
createElement('input', {
type: HIDDEN,
name: name,
value: {
filename: options.filename || 'chart',
type: options.type,
width: options.width,
svg: svg
}[name]
}, null, form);
});
// submit
form.submit();
// clean up
discardElement(form);
},