You have to call chart.render() after each slide change.
$('#myCarousel').carousel({
interval: 2000
});
$('#myCarousel').bind('slid', function() {
//get the chart object and use chart.render()
});
-
This reply was modified 10 years, 4 months ago by Daniel Silva.