jmann Report post Posted June 22, 2007 (edited) We are creating 2D Bar charts through xml. We are having a problem where sometimes charts with a lesser value will be longer than charts with a bigger value. For instance, a chart with a value of 69 will be longer than one with a value of 80. This doesn't happen in all cases. This is what an example looks like: We are dynamically generating the code to display these, but I can't see why it would skew the graph... Here is the generated HTML (sorry the code shortcut wouldn't display the object right, so I had to make images): Top Graph (69) Bottom Graph (80): I know there is a height difference in the object but I have played with that and made them identical. Can anyone see something wrong with the code? Thanks for any help. Josh Edited June 22, 2007 by Guest Share this post Link to post Share on other sites
Pallav Report post Posted June 22, 2007 Josh, The height of each bar in the chart also depends on the y-axis scale of each chart. If you want all charts to have similar scale, you'll need to manually set them as : <chart yAxisMaxValue='xx' yAxisMinValue='yy' ..> Share this post Link to post Share on other sites
jmann Report post Posted June 22, 2007 Pallav- Thank you for your help. Your suggestion worked perfectly. I really appreciate the quick response. Regards, Josh Share this post Link to post Share on other sites