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 2019/10/11 09:14:15 UTC

[GitHub] [incubator-echarts] collingmk opened a new issue #11383: echarts 移动端 toolTip被echarts容器遮盖(iphone11手机)

collingmk opened a new issue #11383: echarts 移动端 toolTip被echarts容器遮盖(iphone11手机)
URL: https://github.com/apache/incubator-echarts/issues/11383
 
 
   
   ### Version
   4.3.0
   
   ### Steps to reproduce
   option ={
                           grid:{
                               top:'20%',
                               bottom:0,
                               right:'5%',
                               left:'0',
                               containLabel:true,
                           },
                           tooltip: {
                               trigger: 'axis',
                               confine:true,
                           },
                           xAxis: {
                               type: 'category',
                           },
                           yAxis:{
                               name:'元/吨',
                               min:'dataMin',
                           },
                           dataset:{
                               dimensions:['日期','采购价'],
                               source:[
                                   {'日期':'2019-01-02','采购价':100},
                                   {'日期':'2019-01-05','采购价':400}
                               ]
                           },
                           series: {
                               type:'line',
                               smooth:true,
                               symbol: 'circle',
                               symbolSize:2,
                               sampling: 'average',
                               connectNulls:true,
                               label:{
                                 // show:true
                               },
                               itemStyle: {
                                   color: '#ffc858'
                               },
                               lineStyle:{
                                   width:1
                               },
                               areaStyle: {
                                   color: new echarts.graphic.LinearGradient(
                                       0, 0, 0, 1,
                                       [
                                           {offset: 0, color: '#ffc858'},
                                           {offset: 1, color: 'rgba(255,200,88,0)'}
                                       ]
                                   )
                               }
                           },
                       }
   
   ### What is expected?
   tooltip正常提示
   
   ### What is actually happening?
   tooltip被图形容器遮盖
   ![IMG_0062](https://user-images.githubusercontent.com/18276377/66639968-897e4680-ec4a-11e9-91f8-76c066ac13f1.PNG)
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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