I have a time series plot where the bottom axis is defined as date time, in automatic mode, ie
Code: Select all
DateTime dt = Convert.ToDateTime(XArrayTable[i]);
m_fastline.Add(dt, YdataValue);
tChart1.Axes.Bottom.Automatic = true;
tChart1.Series.Add(m_fastline);
When in auto mode, you would expect the axes looks at the range, and creates appropriate labels, not useless ones.
This looks a lot like a bug
Any chance it can get fixed?