I have a bar chart (or a column chart) and I do this:
OleDbDataAdapter DA = new OleDbDataAdapter(query, connection);DataTable DT = new DataTable();DA.Fill(DT);
UltraChart1.Data.DataSource = (object) DT;UltraChart1.Data.DataBind();
My graphic opens but there is always a bar in white, as if the data that that bar graph would be zero, but that is not true.
What is happening, is that a bug?
I have Infragistics NetAdvantage 2011.1 ASP.NET CLR 2.0
Please somebody help me.
Thanks in Advance.
Hi,
You can try using:
this.ultraChart1.Data.ZeroAligned = true;
There is a problem in the wizard, if you doesn't check the option for Zero Aligned, it means that Zero Aligned property is set to true, and if you check it that means false. Opposed to the normal logic.