helo friends I need to add the lables for x and y axis in dojo grapsh dojo.addOnLoad(function() { var dc = dojox.charting; var c = new dojox.charting.Chart2D("test3"); c.setTheme(dojox.charting.themes.Wetland); c.addPlot("default", { type: "StackedAreas", tension: 3 }); c.addAxis("x", { fixLower: "major", fixUpper: "major" }).addAxis("y", { vertical: true, fixLower: "major", fixUpper: "major", min: 0 }); c.addSeries("A", [1, 2, 0.5, 1.5, 1, 2.8, 0.4]). addSeries("B", [2.6, 1.8, 2, 1, 1.4, 0.7, 4]). addSeries("C", [6.3, 1.8, 3, 0.5, 4.4, 2.7, 2]). addSeries("D", [3, 4, 0.7, 2.5, 3, 3.8, 1.4]). addSeries("E", [1, 2, 1.7, 2.5, 3, 2.8, 2.4]); c.render(); var legendTwo = new dojox.charting.widget.Legend({ chart: c }, "legendTwo"); }); Thanks