I持って次のような問題:我々のアプリケーションで
我々は、実行時に定義されたサブカテゴリーでのレポートの一覧...レポートの
全体的な結果がのColumnSeriesに示されているを持っています、それはうまく動作します。ここでは、直接比較のためにLineSeriesにサブカテゴリの結果を表示する必要がありますが、これはうまくいきません。 これは私が(後ろのコードで)これまで持っているものです。Silverlightのグラフ作成ツールキット:生成LineSeriesが例外をスローし
foreach (var item in ReportListViewModel.ReportSections)
{
var series = new LineSeries();
series.SetBinding(DataPointSeries.ItemsSourceProperty, new Binding("ItemList"));
series.IndependentValuePath = "Date";
series.DependentValuePath = item.BindingPath; // points to an existing entry in a Dictionary<string, double>
series.Title = item.Text;
chart.Series.Add(series);
}
それが正常に動作しますが、データがロードされると、私は値をプロットするための適した軸が見つからないことを知らせると、InvalidOperationExceptionを取得します。
次の作品は(それは私が必要とまさにれていなくても)完全に罰金:
foreach (...)
{
...
series.DependentValuePath = "Result" // Result is the dependent property of the ColumnSeries, and I tested it just to make sure it isn't me
...
}
あなたは「item.BindingPath」の値の例を挙げてもらえますか? – SalvadorGomez
'' [Personality] '''私が言ったように、これはDictionary {...、{"Personality"、2.0}、...} –
Nuffin