本文介绍了如何使用chartjs从左到右绘制带有线条动画的折线图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 chartjs 插件实现折线图.我的折线图已绘制加载时从下到上.我想要从左到右的动画线条.我该如何改变?
I am implementing the line graph using chartjs plugin. My line graph is drawnfrom bottom to top when loading. I would like the lines animated from left to right. How can I change?
推荐答案
你可以在初始化覆盖中扩展图表并覆盖动画的起始值,像这样
You can extend the chart and override the starting values for the animation in the initialize override, like so
Chart.types.Line.extend({
name: "LineAlt",
initialize: function(data){
Chart.types.Line.prototype.initialize.apply(this, arguments);
this.eachPoints(function(point, index){
Chart.helpers.extend(point, {
x: this.scale.calculateX(0),
y: this.scale.calculateY(point.value)
});
point.save();
}, this);
}
});
那么就使用扩展图表,像这样
Then just use the extended chart, like so
...
new Chart(ctx).LineAlt(data);
小提琴 - http://jsfiddle.net/kLg5ntou/
这篇关于如何使用chartjs从左到右绘制带有线条动画的折线图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!