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/19 17:12:39 UTC

[GitHub] [echarts] ParasolGao commented on issue #17239: [Bug] Can we get the coordinates when we know the datalabel and series data point?

ParasolGao commented on issue #17239:
URL: https://github.com/apache/echarts/issues/17239#issuecomment-1159778387

   Maybe you can try this
   ```
   option = {
     xAxis: {
       type: 'category',
   
       data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
     },
     yAxis: {
       type: 'value'
     },
     series: [
       {
         data: [150, 230, 224, 218, 135, 147, 260],
         type: 'line',
         emphasis:{
           label:{
             show:true
           }
         }
       },
     ]
   };
   ```
   


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