TeeChart曲线的X轴是时间,但是频率很高。没法完全显示。
例如,一秒钟有2000个点,那么点与点的间隔为0.5毫秒。
使用TChart类的GetAxisLabel事件,
函数手册上对此事件的解释:
An Event is triggered for each Axis Label painted. There are two different uses for GetAxisLabel: 1) : Axis Labels are Values. Is this case, the Series parameter will be nil, and the ValueIndex will be -1. 2) : Axis Labels are Series points. The Series parameter will be a valid Series, and the ValueIndex will be the current Series point position. You can change the LabelText referred parameter for drawing a different Axis Label.
tChart.GetAxisLabel += tChart_GetAxisLabel; void tChart_GetAxisLabel(object sender, GetAxisLabelEventArgs e) { if (((Steema.TeeChart.Axis)sender).Equals(tChart.Axes.Bottom)) { double max = tChart.Axes.Bottom.Maximum; double min = tChart.Axes.Bottom.Minimum; double middle = Math.Ceiling((min + max) / 2.0 + min); if (e.ValueIndex == max) { e.LabelText = DateTime.Now.ToString("MM-dd HH:mm:ss"); } else if (e.ValueIndex == min) { e.LabelText = DateTime.Now.AddHours(1).ToString("yyyy-MM-dd HH:mm:ss"); } else if (e.ValueIndex == middle) { e.LabelText = DateTime.Now.AddMinutes(30).ToString("yyyy-MM-dd HH:mm:ss"); } else { e.LabelText = string.Empty; } } }
上述代码的问题是:
在缩放的时候,就没有开始时间,结束时间以及中间的时间了。
需要考虑在缩放时间中,重新绘制这三个时间,难点在于,计算出当前起始点和结束点所对应的时间。
时间: 2024-12-18 03:43:36