我在这里找到了Plotly配置选项:
https://plot.ly/javascript/configuration-options
https://github.com/plotly/plotly.js/blob/master/src/plot_api/plot_config.js#L22-L86
但是,对于“toImage”按钮(标记为“将图表下载为png”),我似乎无法配置图像文件的名称。它总是被称为“newplot.png”,但我想给它一个不同的名字。这有什么选择吗?
我使用的是Plotly的JavaScript版本。
答案 0 :(得分:1)
您可以使用未记录的变量在 Plotly 配置中进行设置:
toImageButtonOptions
// statically override options for toImage modebar button
// allowed keys are format, filename, width, height, scale
// see ../components/modebar/buttons.js
例如,您可以输入:
toImageButtonOptions: {filename:"nameofyourfile"}