erkkaha opened a new issue, #20846: URL: https://github.com/apache/echarts/issues/20846
### Version 5.6.0 ### Link to Minimal Reproduction https://echarts.apache.org/examples/en/editor.html?c=line-simple&code=PYBwLglsB2AEC8sDeAoWsAeBBDEDOAXMmurGAJ4gCmRA5AMYCGYVA5sAE7m0A0J6AE2aMiAbVoBZGL1i0AKgFcqM2gHUqAlXIAWClQDEOEFQGVmphdFoBdEgF8-6cjnxFUpMpRqyAbowA2SrT2jrA--AoBEowgbvyweNrAAO5EAGYBeFSh6AD0uRyM0KzeogCMPLBlAKzWlfmwyZwA1njx-YXFpQC0ZQAMlX11sA1NHK3xnSViA1VD9bmw0MBgjS0QxfHACmAA8mkASkXTxB7o9MD-nGK0HBo28Q7xG0ddcWewF1ccNwBG_ox6M0Hh47CESFkjFRCLBRPF3GchGARLCAOyVABslQAHJVqpVuvjYAAmPF1eLoCjUOj-DbKR4kWx2ADcQA ### Steps to Reproduce Use official editor with following options ``` option = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, visualMap: { show: false, //range: [1, 15], // works //range: [-10, 0], // works range: [0, 10], // not working outOfRange: { color: ['red'] }, inRange: { color: ['black'] } }, series: [ { data: [7, 6, 8, 5, -5, 2, 5], type: 'line' } ] }; ``` ### Current Behavior Observe line belov x-axis not rendered in red  ### Expected Behavior Line below 0 should be drawn in red. ### 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]
