Everything works fine locally but I just can't seem to work out what is going wrong when it is deployed.
It looks like something is missing but all the necessary files are there in the correct order:
bundles.Add(new ScriptBundle("~/bundles/angular").Include(
"~/Scripts/angular.js",
"~/Scripts/angular-resource.js",
"~/Scripts/angular-route.js",
"~/Scripts/angular-aria.min.js",
"~/Scripts/Chart.js",
"~/Scripts/angular-chart.js"
));
It keeps throwing the following error:
Error: [$injector:unpr] Unknown provider: nProvider <- n <- chartBarDirective
http://errors.angularjs.org/1.2.9/$injector/unpr?p0=nProvider%20%3C-%20n%20%3C-%20chartBarDirective
at http://xxxxxxxxxxxxxx/bundles/angular?
I'm not using a directive so this must be an Angular-Chart issue?
Any ideas?