I am trying to create a chart with 2 Series of data. The first series will be a vertical line which will be associated with Time(in days). The second series will be medical data collected for that day, example blood pressure. I have been able to graph the BP readings but unable to do the vertical line for the day. Any help would be appreciated. So far here is the code to display both datasets:
var chart1 = new dojox.charting.Chart2D("test1");
chart1.setTheme(dojox.charting.themes.PlotKit.cyan);
chart1.addPlot("default", {type: "Lines"});
