helgasoft commented on issue #19290: URL: https://github.com/apache/echarts/issues/19290#issuecomment-1807192357
ok, so the issue is about the **height**, not the width. Notice that [candlestick.data](https://echarts.apache.org/en/option.html#series-candlestick.data) should be in format **[open, close, lowest, highest]**, which is not the case in your data: present = data.push(["183.97","196.40","183.531","186.571"]) correct = data.push([183.97,186.571,183.531,196.40]) -- 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]
