I have this problem, and dont know if it can be solved. I have set of points obtained by some measurement. When I populate dundas chart I get this

but when fill dataSet structure with same data and register to stimulisoft report
Code: Select all
for (int i = 0; i < chart1.Series["maxTemp"].Points.Count; i++)
{
dataSet1.Tables[0].Rows.Add(DateTime.FromOADate(chart1.Series["maxTemp"].Points[i].XValue), (int)chart1.Series["Temperatura"].Points[i].YValues[0], (int)chart1.Series["maxTemp"].Points[i].YValues[0], (int)chart1.Series["minTemp"].Points[i].YValues[0]);
}
stiReport1.RegData(dataSet1);
I get this

So my question is, can I set somehow stimulireport to take care about points destination in X axes to obtain same result as in dundas chart (dundas chart takes care about time axis)