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

   ### Version
   
   4.7.0
   
   ### Link to Minimal Reproduction
   
   https://code.visualstudio.com/
   
   ### Steps to Reproduce
   
   1. 使用折线图配置
   2. 设置第一个折线并让第二、第三个折线name成为第一个折线name的字符串子集,
   3. 如name1 = ‘ABCDE’,name2 = 'ABC', name3 = 'CDE'
   4. series: [
           {
             name: 'ARPPU',
             type: 'line',
             stack: 'Total',
             data: this.regData.map(item => item.arpu)
           },
           {
             name: 'ARPU',
             type: 'line',
             stack: 'Total',
             data: this.regData.map(item => item.arppu)
           },
   ]
   
   ### Current Behavior
   
   当前行为,name存在关系,导致被包含name的折线数据,与包含该name的折线数据一致,但鼠标悬浮后tooltip中出现的数值为正确数值
   示例:[name1: 'ARPPU', name2: 'ARPU']
   bug:name1 包含name2,那么name对应的折线与name1一致
   
   ### Expected Behavior
   
   预期行为,希望name和对应的data一一对应,不会串数据
   
   ### 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-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