han54369 opened a new issue #14653:
URL: https://github.com/apache/echarts/issues/14653
### Version
5.0.2
### Steps to reproduce
option = {
tooltip: {
trigger: 'axis'
},
legend: {top:30},
xAxis: {
type: 'time'
},
yAxis: {
type: 'value'
},
stack:true,
series: [
{
name: 'Remaining',
data: [
["2021-03-01 00:00:00",100],
["2021-03-02 00:00:00",90],
["2021-03-10 00:00:00",70],
["2021-03-11 00:00:00",60]
],
type: 'line',
step: 'end',
//stack: 'IN'
},
{
name: 'Deposited',
data: [
["2021-03-03 00:00:00",20],
["2021-03-07 00:00:00",50],
["2021-03-08 00:00:00",65],
["2021-03-12 00:00:00",70]
],
type: 'line',
step: 'end',
//stack: 'IN'
}
]
};
### What is expected?
The first 'Deposited' value is not 110.
### What is actually happening?
Stack over time
<!-- 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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]