Sorry if this has been covered, I could not find a search function for the forums, and the site search did not return applicable results.
I am trying to create a couple charts using a single CsvStore. I am not able to produce an array that can be read by the Chart2D addSeries attribute. Here is my attemped example:
makeCharts = function() {
var chart1 = new dojox.charting.Chart2D("simplechart");
chart1.addPlot("default", {type: "StackedLines", tension:2, shadows: {dx: 2, dy: 2, dw: 2}});
chart1.addAxis("x");
chart1.addAxis("y", {vertical: true});
