JohnRock0422 opened a new issue #10135: SVG x Scatter, problem on painting 
series.label
URL: https://github.com/apache/incubator-echarts/issues/10135
 
 
   ### Version
   4.1.0-release
   
   ### Steps to reproduce
   Show the following scatter chart with `renderer: 'svg'`
   
   ```
   {
         renderer: 'svg', 
         color: ['#ffe0e0'], 
         xAxis: {},
         yAxis: {},
         series: [{
             label: {
               normal: {
                 show: true, 
                 position: 'top', 
                 color: '#000'
               }
             }, 
             symbolSize: 50,
             data: [
                 [10.0, 8.04],
                 [8.0, 6.95]
             ],
             type: 'scatter'
         }]
     }
   ```
   
   ### What is expected?
   Same behavior as `renderer: 'canvas'`
   
   ### What is actually happening?
   There are some problems on showing label in `renderer: 'svg'`
   1. The `position: top` doesn't aware the symbol size. So, the label is not 
shown on top of the symbol.
   2. Switch between `show: true` and `show: false` of the label, the chart MAY 
not repaint to show/hide the labels.
   
   _PS: problem can be repeated in 4.2.1-rc.3_
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   <!-- This issue is in English. DO NOT REMOVE -->

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to