mexvod opened a new issue #9141: Negative line calculate stack URL: https://github.com/apache/incubator-echarts/issues/9141 option = { grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis : [ { type : 'category', boundaryGap : false, data : [1,2,3,4,5] } ], yAxis : [ { type : 'value' } ], series : [ { type:'line', stack: '1', data:[110,120, 120, 101,115] }, { type:'line', stack: '1', label: { normal: { show: true, position: 'top' } }, areaStyle: {normal: {}}, data:[134,200, -20, 181,143] } ] };  Negative areaStyle badly !! Next: option = { grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis : [ { type : 'category', boundaryGap : false, data : [1,2,3,4,5] } ], yAxis : [ { type : 'value' } ], series : [ { type:'line', data:[110,120, 120, 101,115] }, { type:'line', label: { normal: { show: true, position: 'top' } }, data:[134,200, 80, 181,143] } ] };  How to make:  how to paint over these areas?
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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]
