0

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

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

使用此控件可以实现这一点,还是我在钓鱼独角兽?

如果可能,怎么做?

干杯

4

1 回答 1

3

没关系,想通了:

StripLine strpToday = new StripLine();
        strpToday.IntervalOffset = DateTime.Today.ToOADate();
        strpToday.StripWidth = 1;
        strpToday.BackColor = Color.ForestGreen;
        chtHC.ChartAreas[0].AxisY.StripLines.Add(strpToday);
于 2011-04-12T12:28:03.573 回答