I've posted this on [stackoverflow][1], but maybe someone here knows...
I'm using angular-ui's carousel and I need to tell my google charts to redraw after they have slid into view. In spite of what I've read, I can't seem to hook into the event.
See my attempt: [
http://plnkr.co/edit/Dt0wdzeimBcDlOONRiJJ?p=preview][2]HTML:
Slide {{$index}}
{{slide.text}}
On document load:
$('#myC').live('slid.bs.carousel', function (event) { console.log("slid"); } );
It should work something like this: [
http://jsfiddle.net/9fwuq/][3] - non-angular-ui carousel
Perhaps there is a more angular way to hook into the fact that my chart has slid into view?
[1]:
http://stackoverflow.com/questions/24686119/angular-ui-carousel-slide-events [2]:
http://plnkr.co/edit/Dt0wdzeimBcDlOONRiJJ?p=preview [3]:
http://jsfiddle.net/9fwuq/