8

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.

Picture of my chart

ti7
  • 16,375
  • 6
  • 40
  • 68
shahab kamali
  • 331
  • 4
  • 16

2 Answers2

9

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: {}
        }
    }
}
Emerson
  • 333
  • 2
  • 8
2

In newer versions, it has changed to :

toolbox: {
    feature: {
        saveAsImage: {
           // Show the title when mouse focus
            title: 'Save As picture'
        }
    }
}
Niket Pathak
  • 6,323
  • 1
  • 39
  • 51
Amir Azizkhani
  • 1,662
  • 17
  • 30