NVD3.js: ReferenceError: nv is not defined
Actually i found out, the problem was the folder structure. The examples that comes with the angular-nvd3 website gives path
bower_components/nvd3/nv.d3.js
, check in your bower_components file the actual path would be
bower_components/nvd3/build/nv.d3.js
Similarly the nv.d3.css path is NOT
bower_components/nvd3/nv.d3.css
it is,
bower_components/nvd3/build/nv.d3.css
Also, DON'T forget to add
<meta charset="utf-8">
as the first line inside your head tag..
Can you post a Plunker/Fiddle? Off the top of my head, it may just be where you're including the nv.d3.js. Did you also include D3.js?