通过MVVM向Data Binding和amCharts寻求帮助。我在那一刻:
一个名为AskCollection的ObservableCollection
这是SymbolObjectModels
的集合每个模型包含:
public double Size { get; set; }
public double BidAsk { get; set; }
public string QuoteID { get; set; }
目前我正在尝试按如下方式绑定XAML中的数据,但没有运气:
<xaml>
<am:LineChart Grid.ColumnSpan="2" SeriesSource="{Binding AskCollection}" IDMemberPath="{Binding QuoteID}" Background="DimGray">
<am:LineChart.Graphs>
<am:LineChartGraph DataItemsSource="{Binding AskCollection}" ValueMemberPath="{Binding BidAsk}" SeriesIDMemberPath="{Binding QuoteID}">
</am:LineChartGraph>
</am:LineChart.Graphs>
</am:LineChart>
</xaml>
不幸的是,没有出现折线图:(我也尝试使用与ObservableCollection相对的List,仍然没有快乐。
谁能看到我做错了什么?
非常感谢,干杯。
答案 0 :(得分:2)
IDMemberPath,ValueMemberPath等应该是属性名称,而不是绑定。 IE浏览器。 IDMemberPath =“QuoteID”等。