如何重命名echart下载图标的tooltip

how do I rename tooltip of echart download icon

我正在使用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'
        }
    }
}