paris0120 opened a new issue, #17135: URL: https://github.com/apache/echarts/issues/17135
### Version ng-echarts 8.0.1 ### Link to Minimal Reproduction https://611udm.csb.app/ ### Steps to Reproduce ``` import * as echarts from "echarts"; import "./styles.css"; const chart = echarts.init(document.getElementById("app")); chart.setOption({ xAxis: { type: "category", data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"] }, yAxis: { type: "value" }, series: [ { data: [120, null, 150, 80, 70, 110, 130], type: "line", connectNulls: true, showBackground: true, backgroundStyle: { color: "rgba(180, 180, 180, 0.2)" }, stack: "test" }, { data: [120, null, 150, 80, 70, 110, 130], type: "line", connectNulls: true, areaStyle: { color: "red" }, showBackground: true, backgroundStyle: { color: "rgba(180, 180, 180, 0.2)" }, stack: "test" } ] }); ### Current Behavior The area color from the top value overflows to the bottom. ### Expected Behavior The area color filling stops at the lower value-line for null values ### 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]
