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

TeeChart曲线的X轴是时间,但是频率很高。没法完全显示。

例如,一秒钟有2000个点,那么点与点的间隔为0.5毫秒。

 使用TChart类的GetAxisLabel事件,

函数手册上对此事件的解释:

1
2
3
4
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.

 

复制代码
 private void Init()
{
tChart = new TChart();
line = new Line();
random = new Random();

tChart.Series.Add(line);
tChart.Aspect.View3D = false;
tChart.Dock = DockStyle.Fill;
tChart.GetAxisLabel += tChart_GetAxisLabel;
tChart.Axes.Bottom.Labels.Style = AxisLabelStyle.Mark;
tChart.Axes.Bottom.Labels.Angle = 45;
line.ShowInLegend = false;


}
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;
                }
            }
        }
复制代码

 

上述代码的问题是:

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

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

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(1109)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示