保存图片功能echarts 折线配置项内容和展示

保存图片的功能,将鼠标移到上面时,显示的文字不全

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    yAxis: {},
    series: [{
        type: 'line',
        data: [220, 182, 191, 234, 290, 330, 310]
    }],
    toolbox: {

          
        show: true,

          feature: {

                
            saveAsImage: {

                    
                show: true,

                    excludeComponents: ['toolbox'],

                    pixelRatio: 2

                    
            }

              
        }

    }
};
    
截图如下