han54369 opened a new issue #14652:
URL: https://github.com/apache/echarts/issues/14652
The first deposited value is not 110.
-------------------- code ----------------------
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'
}
]
};
--
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]