0

DataSet テーブルから返される Dataview を使用してグラフを作成しようとしています。データソース ウィザードから作成されたデータセットとテーブル アダプターを使用するデータ プロバイダー オブジェクトを 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 に答える