我正在创建一个wpf应用程序,其中包含Visual Studio 2010中的动态数据显示地图。我在图表上有一个Segment(行)。我想在此细分中添加文字。我不关心文本的位置(在线上或在线下或侧面)但是我想在其中添加文本,并且不会成功。如果有人知道我需要添加的属性或TextBlock,我会非常高兴。它应该立即运行。我需要在c#代码中不在xaml中。 我的代码添加行:
// Make the last line between the last point to the first point
segmentHelper = new Segment(new Point(x1, y1),new Point(x2, y2));
// Adding the line to the map - chartplotter
plotter.Children.Add(segmentHelper);