WPF动态数据显示图表 - 标签

时间:2014-12-15 11:39:19

标签: c# wpf xaml

我正在使用Microsoft Visual Studio 2010,包括动态数据显示。我试图在图表上添加 DYNAMIC 标签或文本块。我成功地在网格上添加了一个文本块,但它随图表移动(我希望它在特定点上的图表上 - 而不是在屏幕上)。 我添加了textBlock:

            TextBlock LenghtText = new TextBlock();
            LenghtText.Margin = new Thickness(180, 50, 0, 0);
            LenghtText.Text = lengthLine + "";
            LenghtText.Width = 50;
            myGrid.Children.Add(LenghtText);
            // plotter.Children.Add(LenghtText); //--> If i try this line it error that LenghtText doesn't children of a IPlotterElement

0 个答案:

没有答案