wilsonchen85 opened a new issue #16275:
URL: https://github.com/apache/echarts/issues/16275


   ### Version
   
   3.3.2
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   `            var option = {
                   tooltip : {
                       trigger: 'axis'
                   },
                   toolbox: {
                       show : true,
                       y: 'top',
                       feature : {
                           mark : {show: true},
                           dataView : {show: false, readOnly: false},
                           magicType : {show: true, type: ['line', 'bar', 
'tiled']},
                           restore : {show: true},
                           saveAsImage : {show: true}
                       }
                   },
                   calculable : true,
                   legend: {
                       data:['领取量','使用量']
                   },
                   xAxis : [
                       {
                           type : 'category',
                           splitLine : {show : false},
                           data : json.data.days
                       }
                   ],
                   yAxis : [
                       {
                           type : 'value',
                           position: 'right'
                       }
                   ],
                   series : [
                       {
                           name:'领取量',
                           type:'line',
                           data:json.data['coupon']
                       },
                       {
                           name:'使用量',
                           type:'line',
                           data:json.data['use']
                       }
                   ]
               };
               myChart.setOption(option);`
   
   ### Current Behavior
   
   点击统计图右上角的还原按钮,统计图会消失
   
![image](https://user-images.githubusercontent.com/13084653/147314712-206ca9e0-2284-4e86-8613-affadb14c930.png)
   
   
   ### Expected Behavior
   
   点击统计图右上角的还原按钮,要正常显示
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to