I want to get rid of the silly tooltip animation that slides the tooltip from one bar to another. It updates the tooltip instantly but lingers on the previous bar. I have tried the documenations transitions property on both the chart and the tooltip and neither has an affect.
$('.chart').kendoChart({
transitions: false,
series: [{
name: "Gold Medals",
data: [current.data("compliant-count")],
color: "#f3ac32"
}, {
name: "Silver Medals",
data: [current.data("noncompliant-count")],
color: "#b8b8b8"
},
tooltip: {
visible: true,
template: "#= series.name #: #= value #",
transitions: false
}
});