You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2022/06/09 07:14:22 UTC

[GitHub] [echarts] Gaks327 opened a new issue, #17188: Moving the slider causes the form to move

Gaks327 opened a new issue, #17188:
URL: https://github.com/apache/echarts/issues/17188

   ### Version
   
   5.3.2
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   
   Uploading deffa376e4829671d283b57b4cbd7568.mp4…
   
   
   
   ### Current Behavior
   
   Moving the slider causes the form to move
   
   ### Expected Behavior
   
   Moving the slider does not cause the form to move
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   let option = {
       tooltip: {
           trigger: 'item',
           formatter: '{b} <br/>amount:{c}'
       },
       grid: {
           x: 60,  
           y: 20,  
           x2: 40, 
           y2: 150  
       },
       xAxis: {
           name: 'amount',
           nameTextStyle: {         
               padding: [0, 0, 0, 0],
           },
           type: 'category',
           data: xData,
           splitArea: true,
           axisLine: {
               lineStyle: {
                   color: '#D5F7FF',
                   width: 1,
               }
           },
           axisLabel: {
               interval: 0,
               textStyle: {
                   color: '#D5F7FF',
               },
               formatter: function (value) {
                   return value.split("").join("\n");
               }
           },
       },
       yAxis: {
           type: 'value',
           axisLabel: {
               textStyle: {
                   color: '#D5F7FF',
               },
           },
           axisLine: {
               lineStyle: {
                   color: '#D5F7FF',
                   width: 1,
               }
           },
       },
       dataZoom : [
           {
               type: 'slider',
               xAxisIndex: [0],
               filterMode: 'filter',
               show: true,
               start: 1,
               end: 10,
           }
       ],
       series: [{
           data: yData,
           type: 'bar',
           itemStyle: {normal: {color: '#01DFC6'}}
       }]
   };


-- 
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: commits-unsubscribe@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org