6

我正在使用 echarts

如何重命名右上角的下载按钮工具提示(用中文写)

我在 echart 选项中找不到。

Picture of my chart

4

2 回答 2

7

您可以使用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: {}
        }
    }
}
于 2017-02-14T09:55:18.940 回答
1

在早期版本中,它更改为:

toolbox: {
    feature: {
        saveAsImage: {
           // Show the title when mouse focus
            title: 'Save As picture'
        }
    }
}
于 2020-03-11T14:22:36.777 回答