我在我的C#程序中使用MSChart来创建折线图,但我找不到任何创建" drop line"即线从每个数据点下降到X轴。 有人可以帮忙吗? 感谢。
答案 0 :(得分:0)
我使用LineAnnotation对象解决了我的问题:
int index = 1;
foreach (DataPoint _point in series1.Points)
{
LineAnnotation annotation = new LineAnnotation();
annotation.LineColor = Color.Black;
annotation.LineWidth = 4;
annotation.LineDashStyle = ChartDashStyle.Dot;
annotation.AxisX = chartArea1.AxisX;
annotation.AxisY = chartArea1.AxisY;
annotation.AnchorX = index;
annotation.AnchorY = 0;
annotation.Height = _point.YValues[0];
annotation.Width = 0;
annotation.IsSizeAlwaysRelative = false;
annotation.ClipToChartArea = "ChartArea1";
chart1.Annotations.Add(annotation);
index++;
}
有趣的是,当我将注释锚定到数据点本身时,上面的代码表现得很奇怪,即使我的所有点都在同一象限中,也会画出一些线条和一些线条。经过大量的游戏,我设法通过将注释锚定到适当的" drop"来解决问题。指向X轴。