Two bar chart questions

Question 1: Is there any quick way to widen the Y-axis? It’s cutting off the text that I need to display there, and I can’t find a way to widen the label area on the Y-axis to display more text.

Question 2: How can I display comparison data using the bar graph? Basically, I have numbers from two different places that I want to display on the same bar graph for comparison sake, but I cannot figure out how to display more than one set of data per bar graph.

Thanks in advance!

Is there any quick way to widen the Y-axis?

You may increase left padding:

chart= new dhtmlXChart({ ... padding:{ left:100 } })

I cannot figure out how to display more than one set of data per bar graph.

The next version will provide series feature (it is going to be released in several days, hopefully tomorrow).
This functionality will allow to display several properties one data object.

The padding example is exactly what I needed. Thank you!

dhtmlxChart all json data is zero has error in IE
var data = [
{ sales:“0”, year:“2000” },
{ sales:“0”, year:“2001” },
{ sales:“0”, year:“2002” },
{ sales:“0”, year:“2003” },
{ sales:“0”, year:“2004” },
{ sales:“0”, year:“2005” },
{ sales:“0”, year:“2006” },
{ sales:“0”, year:“2007” },
{ sales:“0”, year:“2008” },
{ sales:“0”, year:“2009” }
];
please the developer test this case.thank you!!