cuixiping opened a new issue, #19177: URL: https://github.com/apache/echarts/issues/19177
### Version 5.4.3 ### Link to Minimal Reproduction https://codepen.io/igincui/pen/LYMMeOE ### Steps to Reproduce 1. How do you create the chart. Open the codepen link: https://codepen.io/igincui/pen/LYMMeOE 2. What's the chart option ``` option = { series: [ { type: 'graph', symbolSize: [23, 28], itemStyle: { opacity: 0.5, color: 'green' }, lineStyle: { opacity: 1.0, color: 'red' }, data: [ { id: 'start', x: -10, y: 570, symbol: 'path://M 0 0 h23 v28 h-23 v-28 z' }, { id: 'a', x: -10, y: 560, symbol: 'path://M 0 0 h23 v28 h-23 v-28 z' }, { id: 'b', x: 0, y: 560, symbol: 'path://M 0 0 h23 v28 h-23 v-28 z' }, ], links: [ { source: 'start', target: 'a' }, { source: 'start', target: 'b' }, ] } ] }; ``` 3. User interactions before the error happens. None ### Current Behavior The vertical lines have wrong positions, do not start from and end to the center of symbols.  ### Expected Behavior The vertical lines should have correct positions, start from and end to the center of symbols. ### Environment ```markdown - OS: Win 10 (64-bit) - Browser: Chrome Version 117.0.5938.149 (Official Build) (64-bit) - Framework: None ``` ### 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]
