0

我正在尝试使用从数据集表返回的数据视图创建图表。我在 C# 中创建了一个数据提供程序对象,该对象使用从数据源向导创建的数据集和表适配器。数据提供者对象有一个方法,一旦它被填满,它就会返回表上的默认视图。

数据检索部分工作正常,如果我将数据网格绑定到它,我就能看到数据。我的问题是,如何将数据视图绑定到柱形图(或任何图表)?我的独立数据是数据视图中的一个文本列,依赖数据是一个数字量。当我运行此代码时,我收到如下运行时错误:

设置属性“System.Windows.Controls.DataVisualization.Charting.DataPointSeries.DependentValueBinding”引发异常。行号“17”和行位置“18”。

我究竟做错了什么?

<Window xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"  xmlns:my="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit"   x:Class="GraphingTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:GraphingTest"
        Title="MainWindow" Height="350" Width="525">

    <Window.Resources>
        <ObjectDataProvider ObjectType="{x:Type local:CustomDataProvider}"  x:Key="odp1">            
        </ObjectDataProvider>
        <ObjectDataProvider ObjectInstance="{StaticResource odp1}" MethodName="GetQualitativeData" x:Key="odp2">

        </ObjectDataProvider>
    </Window.Resources>
    <ScrollViewer>
    <StackPanel DataContext="{Binding Source={StaticResource odp2}}">
            <chartingToolkit:Chart  >
                <chartingToolkit:ColumnSeries DependentValueBinding="MyNumberValue" IndependentValueBinding="MyTextLabel" ItemsSource="{Binding}">

                </chartingToolkit:ColumnSeries>

            </chartingToolkit:Chart>
        </StackPanel>
    </ScrollViewer>
</Window>

这是我的 C# 数据提供者对象

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using GraphingTest.MyDataSetTableAdapters;

namespace GraphingTest
{
    public class CustomDataProvider
    {
        // construct the dataset
        MyDataSet dataset;

        MyDataTableAdapter adapter;

        public CustomDataProvider()
        {

            dataset = new MyDataSet();
            adapter = new MyDataTableAdapter();
            // use a table adapter to populate the Customers table
            adapter.Fill(dataset.MyData);
        }

        public DataView GetQualitativeData()
        {


            // use the Customer table as the DataContext for this Window
            var x= dataset.MyData.DefaultView;
            return x;
        }
    }
}
4

1 回答 1

1
<chartingToolkit:ColumnSeries DependentValueBinding="MyNumberValue" IndependentValueBinding="MyTextLabel" ItemsSource="{Binding}"> 

应该是:

<chartingToolkit:ColumnSeries DependentValueBinding="{Binding MyNumberValue}" IndependentValueBinding="{Binding MyTextLabel}" ItemsSource="{Binding}"> 

或者

<chartingToolkit:ColumnSeries DependentValuePath="MyNumberValue" IndependentValuePath="MyTextLabel" ItemsSource="{Binding}"> 
于 2012-06-21T01:32:59.887 回答