spirit-boy-guan opened a new issue, #17024:
URL: https://github.com/apache/echarts/issues/17024

   ### What problem does this feature solve?
   
   我想将线图分为几段,并且每段分别渲染不同的颜色及线下区域的颜色
   
   ### What does the proposed API look like?
   
   visualMap: {
       type: 'piecewise',
       show: false,
       dimension: 0,
       seriesIndex: 0,
       outOfRange: {
         color: 'yellow',
       },
       pieces: [
         {
           gt: 1,
           lt: 3,
           color: 'blue',
           areaStyle: {
             color: 'red'
           }
         },
         {
           gt: 5,
           lt: 7,
           color: 'orange',
           areaStyle: {
             color: 'green'
           }
         }
       ]
     },


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