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

   ### What problem does this feature solve?
   
   Do the measuring like oscilloscope cursor.
   
   
   ### What does the proposed API look like?
   
   normal xAxis only one axisPointer
   
![image](https://user-images.githubusercontent.com/25970108/194366504-65eca90a-000c-4414-8fe5-088962ce9667.png)
   
   ``` js
   xAxis: {
       type: 'value',
       //need multiple axisPointers
       axisPointer: {
         snap: false,
         lineStyle: {
           color: '#7581BD',
           width: 2
         },
         label: {
           show: true,
           // formatter: function (params) {
           //   return echarts.format.formatTime('yyyy-MM-dd', params.value);
           // },
           backgroundColor: '#7581BD'
         },
         handle: {
           show: true,
           color: '#7581BD'
         }
       },
     }
   ```
   need this to set multiple ones
   ```js
   xAxis: {
       type: 'value',
       //need multiple axisPointers
       axisPointer: [axisPointer1, axisPointer2, ... ]
     }
   ```


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

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


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

Reply via email to