我正在使用 echarts
如何重命名右上角的下载按钮工具提示(用中文写)
我在 echart 选项中找不到。
您可以使用title
重命名工具提示,例如:
toolbox: {
show: true,
feature: {
downloadTable: {
show: true,
// Show the title when mouse focus
title: 'Save As picture',
// Icon path
icon: '/static/img/download-icon.png',
option: {}
}
}
}
在早期版本中,它更改为:
toolbox: {
feature: {
saveAsImage: {
// Show the title when mouse focus
title: 'Save As picture'
}
}
}