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 2020/03/11 12:49:00 UTC

[GitHub] [incubator-echarts] AlaaFK opened a new issue #12273: echarts heatmap, 2 marker points shared same cell, will plot above each others

AlaaFK opened a new issue #12273: echarts heatmap, 2 marker points shared same cell, will plot above each others 
URL: https://github.com/apache/incubator-echarts/issues/12273
 
 
   Hello,
   
   I'm using echarts heatmap. I have the axes value from 0 to 5
   And I have a list of items showing them in the heat map as circles on the heatmap as mark points:
   for each item in the list we create this markerPoint:
           mp=
           {                  
             name: item.name,       
             xAxis: item.xVal,
             yAxis: item.yVal,
             symbol: 'rect',
             symbolSize:40,
             large:false,
             itemStyle: {
                 color: 'black', margin:3
             },
             label:{
               show: true,
                 formatter: item.name,
                 itemStyle:{color:'white'}},
           };
   the problem is, it 2 items have close values of x and y, will share same cell, and will become above each others, and couldnt not see the 
   item1: x:1.5, y:2
   item2: x:2, y:2
   
   ![image](https://user-images.githubusercontent.com/32033098/76418397-9ea10200-63af-11ea-917f-e0c65c04d5c5.png)
   
   what I want is something like this: 
   ![image](https://user-images.githubusercontent.com/32033098/76418515-cf813700-63af-11ea-8782-609130d34717.png)
   
   

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


[GitHub] [incubator-echarts] AlaaFK closed issue #12273: echarts heatmap, 2 marker points shared same cell, will plot above each others

Posted by GitBox <gi...@apache.org>.
AlaaFK closed issue #12273: echarts heatmap, 2 marker points shared same cell, will plot above each others 
URL: https://github.com/apache/incubator-echarts/issues/12273
 
 
   

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


[GitHub] [incubator-echarts] AlaaFK commented on issue #12273: echarts heatmap, 2 marker points shared same cell, will plot above each others

Posted by GitBox <gi...@apache.org>.
AlaaFK commented on issue #12273: echarts heatmap, 2 marker points shared same cell, will plot above each others 
URL: https://github.com/apache/incubator-echarts/issues/12273#issuecomment-598133699
 
 
   I found the solution in [here ](https://github.com/apache/incubator-echarts/issues/3098):
   symbolOffset: [0, -20]

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