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

   ### Version
   
   5.3.1
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   配置项大致如下:
   {
       tooltip: {
         trigger: 'axis',
         axisPointer: {
           axis: 'x',
           snap: true,
         },
         confine: true,
         padding: 4,
         textStyle: {
           fontSize: 12,
         },
       },
       grid: {
         containLabel: true,
         left: 38,
         right: 78,
         bottom: 50,
       },
       toolbox: {
         feature: {
           dataZoom: {
             yAxisIndex: 'none',
           },
           restore: {},
           saveAsImage: {},
         },
         right: 60,
       },
       xAxis: {
         type: 'time',
         axisLine: {
           show: true,
           onZero: false,
         },
         axisTick: {
           show: true,
           alignWithLabel: true,
         },
         axisLabel: {
           formatter: {
             day: '{M}-{d}',
           },
         },
       },
       yAxis: {
         type: 'value',
         min(value) {
           if ((value.max - value.min) > 10) return Math.round(value.min - 
(value.max - value.min) * 0.1);
           if (value.max > value.min) return value.min - (value.max - 
value.min) * 0.1;
           return value.min - 1;
         },
         max(value) {
           if ((value.max - value.min) > 10) return Math.round(value.max + 
(value.max - value.min) * 0.1);
           if (value.max > value.min) return value.max + (value.max - 
value.min) * 0.1;
           return value.max + 1;
         },
         axisTick: {
           show: true,
           alignWithLabel: true,
         },
         axisLine: {
           show: true,
         },
       },
       series: {
         type: 'line',
         name: t('tag.hisValue') as string,
         showSymbol: true,
         symbolSize: 8,
         encode: { x: 't', y: 'v' },
         emphasis: {
           lineStyle: { width: 2 },
         },
         smooth: false,
       },
     }
   
   ### Current Behavior
   
   更新到5.3.1之后折线图图像是从下往上加载的,是改过什么设置吗?
   
   
https://user-images.githubusercontent.com/58874541/162166981-9ebf36ff-b41c-40c8-b356-fca0409162d2.mp4
   
   
   
   
   ### Expected Behavior
   
   和之前一样图像是从左往右加载的
   
   ### Environment
   
   ```markdown
   - OS: Windows 11
   - Browser: Edge 99
   - Framework: React 17
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
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: dev-unsubscr...@echarts.apache.org.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@echarts.apache.org
For additional commands, e-mail: dev-h...@echarts.apache.org

Reply via email to