简体   繁体   English

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

[英]how do I rename tooltip of echart download icon

I am using echarts我用的是echarts

How do I rename download button tooltip in corner of top-right(written in Chinese language)如何重命名右上角的下载按钮工具提示(中文书写)

I can't find in echart option.我在 echart 选项中找不到。

我的图表图片

You can use the title to rename the tooltip, for example:您可以使用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: {}
        }
    }
}

in earlier version it changed to :在早期版本中,它更改为:

toolbox: {
    feature: {
        saveAsImage: {
           // Show the title when mouse focus
            title: 'Save As picture'
        }
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM