I am trying to make some diagrams with Zingchart, but I cannot get it to work. I installed it using bower installation. On the website, they say that you need to check your directory, and I see that mine is different from what they show.
Them
bower_components
Mine:
bower_compentents
The error I get when I want to build a standard chart is this:
ReferenceError: zingchart not defined
It indicates the part of the code in which the graph is displayed: d)
zingchart.render({
id:'chartDiv',
data:chartData,
height:400,
width:600
});
I use javascript and angular. What am I doing wrong?
source
share