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,
I’ve been trying reproducing this issue, but it seems to work ok. By default is false, and it can be set to true.
Does your behavior occur in design time? Sometimes in design time you need to save (or even build) the form first and make changes again.
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.
You can try using:
this.ultraChart1.Data.ZeroAligned = true;