码迷,mamicode.com
首页 > 其他好文 > 详细

TeeChart的X轴,使用伪装的时间

时间:2015-05-15 19:53:54      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:

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;
                }
            }
        }

上述代码的问题是:

在缩放的时候,就没有开始时间,结束时间以及中间的时间了。

需要考虑在缩放时间中,重新绘制这三个时间,难点在于,计算出当前起始点和结束点所对应的时间。

 

TeeChart的X轴,使用伪装的时间

标签:

原文地址:http://www.cnblogs.com/chucklu/p/4506587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!