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

   ### What problem does this feature solve?
   
   Currently if treemap contains four trees with same values, for example,
   
   option = {
       series: [{
           type: 'treemap',
           data: [{
               name: 'nodeA',            // First tree
               value: 10,
           }, {
               name: 'nodeB',            // Second tree
               value: 10,
           },
           {
               name: 'nodeC',            // Third tree
               value: 10,          
           },
           {
               name: 'nodeD',            // Fourth tree
               value: 10,          
           }]
       }]
   };
   
   
   it will layout as 
   
     D
   ---- B  A
     C
   
   Is it possible to make the layout as 
   
   A  |   B
   -------
   C  |   D
   
   if the whole canvas is square? 
   
   
   
   
   ### What does the proposed API look like?
   
   NA


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