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

   ### Version
   
   5.3.2
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   1. Using echart example "Profile" to create chart.
   2. Add legend in option and found that legend didn't display.
   
   ### Current Behavior
   
   Legend didn't display
   
   ### Expected Behavior
   
   Legend should display
   
   ### Environment
   
   ```markdown
   - OS: Windows 10
   - Browser: Chrome 101.0.4951.67
   - Framework: Javascript
   ```
   
   
   ### Any additional comments?
   
   Here are the code.
   
   ```
   var data = [];
   var dataCount = 10;
   var startTime = +new Date();
   var categories = ['categoryA', 'categoryB', 'categoryC'];
   var types = [
     { name: 'JS Heap', color: '#7b9ce1' },
     { name: 'Documents', color: '#bd6d6c' },
     { name: 'Nodes', color: '#75d874' },
     { name: 'Listeners', color: '#e0bc78' },
     { name: 'GPU Memory', color: '#dc77dc' },
     { name: 'GPU', color: '#72b362' }
   ];
   // Generate mock data
   categories.forEach(function (category, index) {
     var baseTime = startTime;
     for (var i = 0; i < dataCount; i++) {
       var typeItem = types[Math.round(Math.random() * (types.length - 1))];
       var duration = Math.round(Math.random() * 10000);
       data.push({
         name: typeItem.name,
         value: [index, baseTime, (baseTime += duration), duration],
         itemStyle: {
           normal: {
             color: typeItem.color
           }
         }
       });
       baseTime += Math.round(Math.random() * 2000);
     }
   });
   function renderItem(params, api) {
     var categoryIndex = api.value(0);
     var start = api.coord([api.value(1), categoryIndex]);
     var end = api.coord([api.value(2), categoryIndex]);
     var height = api.size([0, 1])[1] * 0.6;
     var rectShape = echarts.graphic.clipRectByRect(
       {
         x: start[0],
         y: start[1] - height / 2,
         width: end[0] - start[0],
         height: height
       },
       {
         x: params.coordSys.x,
         y: params.coordSys.y,
         width: params.coordSys.width,
         height: params.coordSys.height
       }
     );
     return (
       rectShape && {
         type: 'rect',
         transition: ['shape'],
         shape: rectShape,
         style: api.style()
       }
     );
   }
   option = {
     tooltip: {
       formatter: function (params) {
         return params.marker + params.name + ': ' + params.value[3] + ' ms';
       }
     },
     title: {
       text: 'Profile',
       left: 'center'
     },
     legend: {
         data:['JS Heap','Documents','Nodes','Listeners','GPU Memory','GPU']
     },
     dataZoom: [
       {
         type: 'slider',
         filterMode: 'weakFilter',
         showDataShadow: false,
         top: 400,
         labelFormatter: ''
       },
       {
         type: 'inside',
         filterMode: 'weakFilter'
       }
     ],
     grid: {
       height: 300
     },
     xAxis: {
       min: startTime,
       scale: true,
       axisLabel: {
         formatter: function (val) {
           return Math.max(0, val - startTime) + ' ms';
         }
       }
     },
     yAxis: {
       data: categories
     },
     series: [
       {
         type: 'custom',
         renderItem: renderItem,
         itemStyle: {
           opacity: 0.8
         },
         encode: {
           x: [1, 2],
           y: 0
         },
         data: data
       }
     ]
   };
   ```


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