hemantITT opened a new issue #10521: Treemap Blinking
URL: https://github.com/apache/incubator-echarts/issues/10521
 
 
   ### Version
   4.2.1
   
   ### Steps to reproduce
   OS: MacOS
   ScreenSize: 27inch
   Browser: Chrome
   
   1) there is large number of data for TreeMap.  2) Use below similar 
settings.  3) Treemap is used same as demo: 
https://ecomfe.github.io/echarts-examples/public/editor.html?c=treemap-show-parent
   
   {
                       name: 'Main',
                       type: 'treemap',
                       // width: '98%',
                       // height: '95%',
                       // left: 30,
                       roam: false,
                       visibleMin: 300,
   
                       label: {
                           show: true,
                           color: fontColor,
                           position: 'absolute',
                           formatter: function (info) {
                               var labelData = info.data.labels;
                               var labelValueArr = [];
                               if(labelData !== undefined) {
                                   Object.keys(labelData).forEach(function 
(label) {
                                       var labelVal = '';
                                       //Check lable value is not null or 
undefined.If undefined then keep blank.
                                       if(util.nullCheck(labelData[label])) {
                                           labelVal = labelData[label];
                                       }
   
                                       if(label === 'guest') {
                                           labelValueArr.push(labelVal);
                                       } else if(label === 'stand') {
                                           label = 'Location';
                                           labelValueArr.push(label   ':'   
labelVal);
                                       } else {
                                           labelValueArr.push(label   ':'   
labelVal);
                                       }
                                   });
                               }
                               return labelValueArr.join('\n');
                           },
                       },
                       upperLabel: {
                           normal: {
                               show: true,
                               height: 30
                           }
                       },
                       itemStyle: {
                           normal: {
                               borderColor: '#fff'
                           }
                       },
                       levels: $scope.levelOption,
                       data: $scope.treemapData
                   }
   
   ### What is expected?
   Treemap should be displayed properly
   
   ### What is actually happening?
   Treemap result is displayed but when mouse is hovered on parent label then 
all the items of treemap go invisible
   
   ---
   It only happens on large data
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   <!-- This issue is in English. 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:
[email protected]


With regards,
Apache Git Services

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

Reply via email to