Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Is this a bug in UltraChart control?
posted

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.