clarkhillm commented on issue #13072:
URL: https://github.com/apache/echarts/issues/13072#issuecomment-958672804


   我找到了一个比较好的解决办法,就是把x轴的数据和y轴的数据搞到一起。类似这样:
   ```
   _.each(_.range(60), function (i) {
                   state.cpu.series[0].data.shift();
                   state.cpu.series[0].data.push(["00." + i, "-"]);
                 ##});
   ```
   这种情况下图形就是连续的,不会跳动了。


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