C# MS Chart Control - 在甘特图中突出显示今天的日期

发布于 2024-11-01 06:31:00 字数 199 浏览 7 评论 0原文

这个问题的标题说明了一切。

我有一个使用 MS Chart Control 制作的甘特图(RangeBar),目前我有一些 StripLines 来突出显示周末和每个月的开始,但我需要一个仅出现在今天的日期,以便用户可以看到在哪里我们现在到了。

这个控件可以做到这一点,还是我在钓鱼独角兽?

如果可以的话,怎样做?

干杯

The title of this question says it all.

I've got a gantt chart (RangeBar) made using the MS Chart Control, and at present I have some StripLines to highlight weekends and the start of each month, but I need one to appear on today's date only so the user can see where we are at the mo.

Is this possible with this control, or am I fishing for unicorns?

If it's possible, how?

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

没有伤那来痛 2024-11-08 06:31:01

没关系,想通了:

StripLine strpToday = new StripLine();
        strpToday.IntervalOffset = DateTime.Today.ToOADate();
        strpToday.StripWidth = 1;
        strpToday.BackColor = Color.ForestGreen;
        chtHC.ChartAreas[0].AxisY.StripLines.Add(strpToday);

Nevermind, figured it out:

StripLine strpToday = new StripLine();
        strpToday.IntervalOffset = DateTime.Today.ToOADate();
        strpToday.StripWidth = 1;
        strpToday.BackColor = Color.ForestGreen;
        chtHC.ChartAreas[0].AxisY.StripLines.Add(strpToday);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文