Hi there,
I'm using MS Chart to create chart.
I have multiple series of points that i generate using datetime data format.
but for data which pass the 1159pm, the chart can't show on the next day.
It's shown on the same day, for example most of the points are within 0000-2400 day1 but i have point with 0045 day2 but it is still shown in day1 0045. Here are the parts of the codes
m_TeamsPeriodChart.ChartAreas[0].AxisX.LabelStyle.IntervalType = DateTimeIntervalType.Minutes;m_TeamsPeriodChart.ChartAreas[0].AxisX.IntervalType = DateTimeIntervalType.Minutes;m_TeamsPeriodChart.ChartAreas[0].AxisX.IntervalAutoMode = IntervalAutoMode.VariableCount;
.
m_TeamsPeriodChart.Series[i].XValueType = ChartValueType.Time;
thanks.