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.

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: {}
        }
    }
}
in earlier version it changed to :
toolbox: {
    feature: {
        saveAsImage: {
           // Show the title when mouse focus
            title: 'Save As picture'
        }
    }
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With