theo-rodrigues commented on issue #20608:
URL: https://github.com/apache/echarts/issues/20608#issuecomment-3192284958

   I get, but i think i can't aplly the full gradient to the bars, maybe this 
can be another issue, because the ECharts does not support full gradient on 
series for discrete charts. Here is an example with continuous gradient using 
the standard ECharts configuration: 
   
   <img width="1033" height="788" alt="Image" 
src="https://github.com/user-attachments/assets/72622ca0-4dc1-497e-b134-24b8129d0184";
 />
   
   
   https://echarts.apache.org/examples/en/editor.html?c=bar-simple
   
   ``` option = {
     xAxis: {
       type: 'category',
       data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
     },
     yAxis: {
       type: 'value'
     },
     visualMap: {inRange: {color: ['red', 'green']}}
   ,
     series: [
       {
         data: [120, 200, 150, 80, 70, 110, 130],
         type: 'bar'
       }
     ]
   };


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