duke-git opened a new issue, #18468:
URL: https://github.com/apache/echarts/issues/18468

   ### Version
   
   5.0.1
   
   ### Link to Minimal Reproduction
   
   
https://echarts.apache.org/examples/zh/editor.html?code=PYBwLglsB2AEC8sDeAoWsAeBBDEDOAXMmurGAJ4gCmRA5AMYCGYVA5sAE7m0A0J6AE2aMiAbVoBZGL1i0AKgFcqM2gHUqAlXIAWClQDEOEFQGVmphdFoBdEgF8-6cjnxFUpMpRqyAbowA2SrT2jrB4VEZUhLCi_MQegsJiAEwArAAMPLAAjACcmbDJyQAsWWkFAMwVqVnZxQDsZRXp1qEeFNR0_hDQym2keAC2wMBg2kRgHEr96IOMHADWAArAPWBucR545IMARsD-RABEID1HWQD0F4DgFoAXNoDePoDR6igAkNt7ByYQAF7eGbCXG6ABujAOSagHgdV7vfb-ADyADM4eF1jECrQALTZdIAUhsM1I_kYuyoh3iCQ89AOnDoAGIEXDgmT0A5NqQhGARDEkBTOAIxNlavlWrA_IFvHl0g5kNyOLyYhUyhkhSKlERypKuSMZWIajkGkqAirdfU7LYycy4nYSLY7ABuIA
   
   ### Steps to Reproduce
   
   1. in vue file, create lint chart. but display in the echarts demo project.
   2. option: option = {
     xAxis: {
       type: 'category',
       data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
     },
     yAxis: {
       type: 'value'
     },
     series: [
       {
         data: [250, 190, 224, 250, 335, 147, 230],
         type: 'line',
         smooth: true,
         markPoint: {
           symbol: "pin", //标注类型
        symbolSize: 50 , //标记大小
        symbolOffset: [0, '-10%'],
           label: {
             color: '#fff'
           },
           data: [{coord: [1, 190], value: 190}, {coord: [3, 250], value: 250}, 
{coord: [5, 147], value: 147}]
         },
   
       }
     ]
   };
   
   ### Current Behavior
   
   markPoint not display in the chart
   
   ### Expected Behavior
   
   markPoint should display in the chart
   
   ### Environment
   
   ```markdown
   - OS: macOS Monterey
   - Browser: Chrome 111.0.5563.146
   - Framework: Vue@3
   ```
   
   
   ### Any additional comments?
   
   In my vue file, create lint chart. but display in the echarts demo project. 
May I miss some markPoint options?


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to