-1

我需要一个用于直接 DataTable 映射的最佳 WPF 图表控件来绘制各种图表类型。我们正在寻找高性能 wpf 图表控件。任何人都可以建议我哪一个适合我们的要求吗?

4

2 回答 2

1

请通过以下线程:

WPF 图表控件

此外,您可以使用 DevExpress 或 Infragistic Controls 提供的第三方控件。

于 2013-11-12T05:17:55.847 回答
0

WPF 中有多种类型的图表可用。首先,您必须添加以下程序集的参考。

xmlns:chartingToolkit="clr-  namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"

现在添加图表并绑定到源。

       <chartingToolkit:Chart   Title="Departmentwise Employee List" FontWeight="Bold" FontSize="10" 
                                 Foreground="Green" Margin="10"> 
            <chartingToolkit:ColumnSeries  ItemsSource="{Binding DepartmentwiseGroupedEmployee}" 
                                       IndependentValuePath="DeptName" 
                                       DependentValuePath="DeptId">

            </chartingToolkit:ColumnSeries>
        </chartingToolkit:Chart>
于 2013-11-12T05:24:57.467 回答