Reputation: 341
I am using echarts
How do I rename download button tooltip in corner of top-right(written in Chinese language)
I can't find in echart option.
Upvotes: 8
Views: 5263
Reputation: 1804
In newer versions, it has changed to :
toolbox: {
feature: {
saveAsImage: {
// Show the title when mouse focus
title: 'Save As picture'
}
}
}
Upvotes: 2
Reputation: 343
You can use the title
to rename the tooltip, for example:
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: {}
}
}
}
Upvotes: 9