There are some examples of integrating gogole charts as AngularJs directive.
Like this one: http://plnkr.co/edit/YzwjuU?p=preview
Update: I want to avoid to wait on google charts to be rady before bootstrap whole application (As shown in example above):
google.setOnLoadCallback(function() {
angular.bootstrap(document.body, ['myApp']);
});
Is there other way to do this on single module and not on whole app?
Update 2: I have created my planker and it works without waiting for load callback but not sure if it will work in all cases.
