deterralba opened a new issue #15189: URL: https://github.com/apache/echarts/issues/15189
### Version 5.1.2 ### Reproduction link [https://jsfiddle.net/9p4j6175/](https://jsfiddle.net/9p4j6175/) ### Steps to reproduce ```javascript option = { "xAxis": { // min": 10, scale: true, }, "yAxis": { }, "series": [ { "id": "F", "data": [ [20,1], [35,2], [55,7], ], "type": "bar", }, { "id": "M", "data": [ [20,1], [35,2], [55,7], ], "type": "bar", } ] } ``` ### What is expected? The bars are not going at the left side of the xAxis for the lowest value. We could add a option to add "extra security margins", `scale: {margin: '10%'}` could be a solution.  ### What is actually happening? The bars are on the left side of the xAxis for the lowest value.  <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE --> <!-- This issue is in English. DO NOT REMOVE --> -- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
