Incorrect rendering in dojox charting stacked column?

Posted by FokeyJoe on Stack Overflow See other posts from Stack Overflow or by FokeyJoe
Published on 2010-03-22T11:18:04Z Indexed on 2010/03/22 11:21 UTC
Read the original article Hit count: 480

Filed under:

Hiya,

I seem to be having a problem with my dojo stackedcolumn whereby the scale of some of the bars is correct for some x-axis points, but not others. Here's my code (observe the northern ireland hydro should be 70, but only shows as around 30):

dojo.addOnLoad(function() {
  var chart1 = new dojox.charting.Chart2D("sitesbycountry");
  chart1.addPlot("default", {type: "StackedColumns", gap: 10});
  chart1.addPlot("horzgrid", {type: "Grid", hMajorLines: true, vMajorLines: false});
  chart1.addAxis("x", {labels: [{value: 1, text: 'Northern Ireland'}, {value: 2, text: 'Wales'}, {value: 3, text: 'Scotland'}, {value: 4, text: 'England'}], minorTicks: false, microTicks: false});
  chart1.addAxis("y", {vertical: true, minorTicks: false, microTicks: false});
  chart1.addSeries("Hydro", [70, 53, 198, 102], {fill: "#ddddff"});
  chart1.addSeries("Wind and Wave", [67, 51, 150, 245], {fill: "#FEFFBF"});
  chart1.addSeries("Landfill", [1, 23, 40, 0], {fill: "#CFFFD1"});
  chart1.addSeries("Other Biofuels and Wastes", [4, 3, 11, 66], {fill: "#DFD2C3"});  
  chart1.render();
}); 

Is this a behaviour of the chart that I'm not aware of?

TIA

FokeyJoe

© Stack Overflow or respective owner

Related posts about dojox.charting