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?
   
   
   
![image](https://user-images.githubusercontent.com/17318424/52333123-72c58700-2a0d-11e9-8094-bb83983b727a.png)
   
   
![image](https://user-images.githubusercontent.com/17318424/52333270-de0f5900-2a0d-11e9-8256-57ba9fbe36e7.png)
   
   
   
   
   ```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]

Reply via email to