Hello all
I'd like to add interactive graphs in my Edge project, but can't use SVG. I'm now trying to implement the jqPlot library, but can't get it to work. Here is what I have so far:
In "creationComplete" in "Stage" I've added this:
$('<div id="chartdiv" style="height:400px;width:300px; "></div>').appendTo("#Stage");
(function(){
var plot1 = $.jqplot ('chartdiv', [[3,7,9,1,4,6,8,2,5]]);
});
Nothing happens, and I'm not sure how to move on, any help would be greatly appreciated.