lhywell commented on issue #6691:
URL: https://github.com/apache/echarts/issues/6691#issuecomment-1000122013


   ```
   option = {
       xAxis: {
           data: ['a', 'b', 'c', 'd']
       },
       yAxis: {
           
       },
       series: [{
           type: 'line',
           data:[1, 10, 4, 3],
           markPoint: {
               data: [{
                   type: 'min',
                   itemStyle: {
                       normal: {
                           color: 'green'
                       }
                   }
               }]
           }
       },{
           type: 'line',
           data:[1.1, 10, 4, 3],
           markPoint: {
               data: [{
                   type: 'min',
                   itemStyle: {
                       normal: {
                           color: 'green'
                       }
                   }
               }]
           }
       }]
   };
   ```
   
   数字1,1.1同时存在,4.9.0版本可以,5.0以上版本不行


-- 
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