R1ON opened a new issue #9895: boundaryGap dataZoom URL: https://github.com/apache/incubator-echarts/issues/9895 ## boundaryGap with datazoom I have boundaryGap [0, 1] on y axis, but when I increase the size, the gap disappears. How to save my boundaryGap?   ```javascript option = { grid: { containLabel: false }, animation: false, legend: { data: ['scatter'] }, tooltip: { }, xAxis: { type: 'value', }, yAxis: { boundaryGap: [0, 1], type: 'value', }, dataZoom: [ { id: 'dataZoomY', type: 'slider', yAxisIndex: [0], }, ], series: [ { name: 'scatter', type: 'scatter', data: data1 }, ] } ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
