1
我在我的網頁上有一個Plotly,你可以通過點擊模式欄中的圖片圖標作爲PNG下載它。但是,當我點擊它時,它將它作爲名稱爲new-plot的png下載,我如何給它一個自定義名稱?Plotly.js模式欄,以PNG形式下載,給PNG一個名字
我當前的代碼(VAR數據僅僅是數據,所以留出來):
var layout = {
showlegend: true,
legend: {
x: 0,
y: 1
},
xaxis: {
title: 'Date',
titlefont: {
family: 'Courier New, monospace',
size: 18,
color: '#7f7f7f'
}
},
yaxis: {
title: 'Sales',
titlefont: {
family: 'Courier New, monospace',
size: 18,
color: '#7f7f7f'
}
}
};
var options = {
scrollZoom: true,
showLink: false,
modeBarButtonsToRemove: ['zoom2d', 'pan', 'pan2d', 'sendDataToCloud', 'hoverClosestCartesian', 'autoScale2d'],
displaylogo: false,
displayModeBar: true,
};
Plotly.newPlot('tester', data, layout, options);
我在哪裏需要補充的? – fangio
@fangio請查看我的編輯 – rambossa
感謝'width:gd._fullLayout.width'。這非常有幫助! – Brut