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/09/19 05:58:29 UTC

[GitHub] [echarts] sudh0 opened a new issue, #17670: [Bug] 曲线图中横坐标时间参数倒序排列,dataZoom图标阴影与坐标轴中的曲线图相反

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

   ### Version
   
   5.2.2
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   import * as echarts from 'echarts';
   
   var chartDom = document.getElementById('main');
   var myChart = echarts.init(chartDom);
   var option;
   
   option = {
     xAxis: [
       {
         type: 'time',
         boundaryGap: false
       }
     ],
     yAxis: [
       {
         type: 'value',
         boundaryGap: false
       }
     ],
   
     dataZoom: [
       {
         type: 'slider',
         show: true,
         start: 0,
         end: 100,
         handleSize: '100%',
         bottom: 0
       },
       {
         type: 'inside',
         start: 0,
         end: 100
       }
     ],
     series: [
       {
         type: 'line',
         smooth: 0.6,
         symbol: 'none',
         lineStyle: {
           color: '#5470C6',
           width: 5
         },
         areaStyle: {},
         data:
           // [
           //   {name:'2019-10-10', value:['2019-10-10',200],data:200},
           //   {name:'2019-10-11', value:['2019-10-11',560],data:560},
           //   {name:'2019-10-12', value:['2019-10-12',750],data:750},
           //   {name:'2019-10-13', value:['2019-10-13',200],data:200},
           //   {name:'2019-10-14', value:['2019-10-14',580],data:580},
           //   {name:'2019-10-15', value:['2019-10-15',200],data:200},
           //   {name:'2019-10-16', value:['2019-10-16',200],data:200},
           //   {name:'2019-10-17', value:['2019-10-17',200],data:200},
           //   {name:'2019-10-18', value:['2019-10-18',200],data:200}
           // ],
           [
             { name: '2019-10-18', value: ['2019-10-18', 200], data: 200 },
             { name: '2019-10-17', value: ['2019-10-17', 200], data: 200 },
             { name: '2019-10-16', value: ['2019-10-16', 200], data: 200 },
             { name: '2019-10-15', value: ['2019-10-15', 200], data: 200 },
             { name: '2019-10-14', value: ['2019-10-14', 580], data: 580 },
             { name: '2019-10-13', value: ['2019-10-13', 200], data: 200 },
             { name: '2019-10-12', value: ['2019-10-12', 750], data: 750 },
             { name: '2019-10-11', value: ['2019-10-11', 560], data: 560 },
             { name: '2019-10-10', value: ['2019-10-10', 200], data: 200 }
           ]
       }
     ]
   };
   
   option && myChart.setOption(option);
   
   //图标数据的横坐标时间参数倒序排列
   
   ### Current Behavior
   
   横坐标时间参数倒序排列,dataZoom图标阴影与坐标轴中的曲线图相反
   
   ### Expected Behavior
   
   横坐标时间参数倒序排列,dataZoom图标阴影与坐标轴中的曲线图一致
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### 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: 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


[GitHub] [echarts] echarts-bot[bot] commented on issue #17670: [Bug]

Posted by GitBox <gi...@apache.org>.
echarts-bot[bot] commented on issue #17670:
URL: https://github.com/apache/echarts/issues/17670#issuecomment-1250595426

   I'm sorry to close this issue for it lacks the necessary title. Please provide **a _descriptive_ and as _concise_ as possible title to describe your problems or requests** and then the maintainers or I will reopen this issue.
   
   Every good bug report or feature request starts with a title. Your issue title is a critical element as it's the first thing maintainers see.
   
   A good issue title makes it easier for maintainers to understand what the issue is, easily locate it, and know what steps they'll need to take to fix it.
   
   Moreover, it's better to include keywords, as this makes it easier to find the issue self and similar issues in searches.


-- 
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

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


[GitHub] [echarts] sudh0 commented on issue #17670: [Bug]

Posted by GitBox <gi...@apache.org>.
sudh0 commented on issue #17670:
URL: https://github.com/apache/echarts/issues/17670#issuecomment-1250595701

   曲线图中横坐标时间参数倒序排列,dataZoom图标阴影与坐标轴中的曲线图相反


-- 
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

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


Re: [I] [Bug] 曲线图中横坐标时间参数倒序排列,dataZoom图标阴影与坐标轴中的曲线图相反 [echarts]

Posted by "CodeFly16 (via GitHub)" <gi...@apache.org>.
CodeFly16 commented on issue #17670:
URL: https://github.com/apache/echarts/issues/17670#issuecomment-1788275101

   同样遇到


-- 
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

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


[GitHub] [echarts] echarts-bot[bot] closed issue #17670: [Bug]

Posted by GitBox <gi...@apache.org>.
echarts-bot[bot] closed issue #17670: [Bug] 
URL: https://github.com/apache/echarts/issues/17670


-- 
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

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


[GitHub] [echarts] echarts-bot[bot] commented on issue #17670: [Bug] 曲线图中横坐标时间参数倒序排列,dataZoom图标阴影与坐标轴中的曲线图相反

Posted by GitBox <gi...@apache.org>.
echarts-bot[bot] commented on issue #17670:
URL: https://github.com/apache/echarts/issues/17670#issuecomment-1250599215

   @sudh0 It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗
   <details><summary><b>TRANSLATED</b></summary><br>
   
   **TITLE**
   
   [Bug] The abscissa time parameters are arranged in reverse order in the graph, and the dataZoom icon shadow is the opposite of the graph in the axis
   </details>


-- 
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

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