【发布时间】:2016-03-04 14:57:16
【问题描述】:
我在使用 C3.js 关闭动画时遇到了一些问题。鼠标悬停在 C3.js 圆环图上时是否可以删除动画?
我将持续时间设置为 0,但它不起作用 - 当鼠标悬停在图表上时,仍然会制作动画。
例如:https://jsfiddle.net/4ff8vnx4/1/
这是我的代码:
var chartDonut1 = c3.generate({
bindto: "#chart1",
data: {
type: 'donut',
json: [
{"Parfait": 190},
{"Bien": 120},
{"Trop court": 32},
{"Trop long": 22}
],
keys: {
value: ['Parfait', 'Bien', 'Trop court', 'Trop long']
},
names: {
'Parfait': 'Parfait (entre 50 \340 60 car.)',
'Bien': 'Bien (entre 40 \340 49 ou 61 \340 69 car.)',
'Trop court': 'Trop court (inf\351rieur \340 40 car.)',
'Trop long': 'Trop long (sup\351rieur \340 79 car.)'
}
},
transition: {duration: 0}
});
【问题讨论】:
标签: javascript animation d3.js c3.js