YYK966 opened a new issue, #21440: URL: https://github.com/apache/echarts/issues/21440
### Version 6.0.0 ### Link to Minimal Reproduction https://echarts.apache.org/examples/zh/editor.html?c=line-simple ### Steps to Reproduce 配置如下: option ={ "grid": { "bottom": 60, "containLabel": true }, "title": { "show": true, "text": "标题", "textStyle": { "color": "#e6e6e6", "fontSize": 18 }, "left": 0 }, "tooltip": { "show": true, "trigger": "item", "backgroundColor": "#060606", "borderColor": "#060606", "textStyle": { "color": "#F5F5F5" }, "confine": true }, "xAxis": { "type": "category", "data": [ 0, 1 ], "name": "名称", "axisLine": { "show": true, "lineStyle": { "color": "#d91b1b" } }, "axisLabel": { "fontSize": 12 }, "nameTextStyle": { "fontSize": 12 } }, "yAxis": { "type": "category", "data": [ 0, 1, 2 ], "name": "名称", "axisLine": { "show": true, "lineStyle": { "color": "red", "width": 1, type: "solid" } }, "axisLabel": { "fontSize": 12 }, "nameTextStyle": { "fontSize": 12, "color": "#4e84cf" } }, "visualMap": { "min": 1, "max": 6, "calculable": true, "orient": "horizontal", "left": "center", "bottom": "0%", "textStyle": { "color": "#6C6D77" }, "inRange": { "color": [ "#EBE1E1", "#983430" ] } }, "series": [ { "type": "heatmap", "data": [ [ 0, 0, 1 ], [ 1, 0, 4 ], [ 0, 1, 2 ], [ 1, 1, 5 ], [ 0, 2, 3 ], [ 1, 2, 6 ] ], "label": { "show": false } } ] } ### Current Behavior 目前设置y轴的轴线颜色不生效 ### Expected Behavior 期望Y轴轴线颜色为红色 ### Environment ```markdown - OS:Windows 11 专业版 - Browser: chrome 143.0.7499.148 - Framework: [email protected] ``` ### 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]
