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

   ### Version
   
   5.0.2
   
   ### Link to Minimal Reproduction
   
   let base = +new Date(1968, 9, 3); let oneDay = 24 * 3600 * 1000; let date = 
[]; let data = [Math.random() * 300]; for (let i = 1; i < 20; i++) {   var now 
= new Date((base += oneDay));   date.push([now.getFullYear(), now.getMonth() + 
1, now.getDate()].join('/'));   data.push(Math.round((Math.random() - 0.5) * 20 
+ data[i - 1])); } option = {   tooltip: {     trigger: 'axis',     position: 
function (pt) {       return [pt[0], '10%'];     }   },   title: {     left: 
'center',     text: 'Large Area Chart'   },   toolbox: {     feature: {       
dataZoom: {         yAxisIndex: 'none'       },       restore: {},       
saveAsImage: {}     }   },   xAxis: {     type: 'category',     boundaryGap: 
false,     data: date,     axisLabel:{       interval:0     },     splitArea: { 
      show: true,       areaStyle: {         color: ['red', 'red','red', 
'red','','','','','','','','','','','','','','','','']       }     }   },   
yAxis: {     type: 'value',     boundaryGap: [0, '100%']   },   dataZ
 oom: [     {       type: 'inside',       start: 0,       end: 100     },     { 
      start: 0,       end: 100     }   ],   series: [     {       name: 'Fake 
Data',       type: 'line',       symbol: 'none',       sampling: 'lttb',       
itemStyle: {         color: 'rgb(255, 70, 131)'       },       areaStyle: {     
    color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [           {         
    offset: 0,             color: 'rgb(255, 158, 68)'           },           {  
           offset: 1,             color: 'rgb(255, 70, 131)'           }        
 ])       },       data: data     }   ] };
   
   ### Steps to Reproduce
   
   
![20230705-135614](https://github.com/apache/echarts/assets/65215825/016a6bfe-1cb5-4a0e-849e-93e8bcebad72)
   
   
   ### Current Behavior
   
   
![20230705-135614](https://github.com/apache/echarts/assets/65215825/ddd6fa27-5449-4d94-87d4-0a0a5fa28591)
   
   
   ### Expected Behavior
   
   Work out bug
   
   ### Environment
   
   ```markdown
   - Browser: Chrome 96.0.4664.55
   Framework Vue@2
   ```
   
   
   ### Any additional comments?
   
   _No response_


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