Silverlight 4.0:图表工具包 ItemSource

发布于 2024-11-18 22:57:39 字数 261 浏览 2 评论 0原文

我正在将我的应用程序从 visifire 迁移到工具包。我是图表工具包的新手。

如果itemsource是PagedCollectionView类型,如何绑定图表数据?

正如我在此处所看到的,该示例是使用 KeyValuePair 的。真的只是键值对吗?

谢谢

Im migrating my application from visifire to toolkit. I am new to charting toolkit.

How to bind chart data if the itemsource is of type PagedCollectionView?

As I've seen here the example is by using KeyValuePair. Is it just really by keyvaluepair?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青瓷清茶倾城歌 2024-11-25 22:57:40

我将绑定到 PagedCollectionView 上的 SourceCollection 属性。这样,在您的 XAML 中,您可以显式指定要绑定到的对象上的属性...我认为这使得 XAML 更易于阅读且更易于维护。例如:

<chartingToolkit:ColumnSeries Title="Actual" 
    ItemsSource="{Binding SavingsPagedViewCollectionSummary.SourceCollection}" 
    IndependentValueBinding="{Binding Company}" 
    DependentValueBinding="{Binding Savings}" />

I would bind to the SourceCollection property on the PagedCollectionView. That way, in your XAML, you can explicitly specify the attributes on your object to bind to... That makes the XAML easier to read and easier to maintain in my opinion. For example:

<chartingToolkit:ColumnSeries Title="Actual" 
    ItemsSource="{Binding SavingsPagedViewCollectionSummary.SourceCollection}" 
    IndependentValueBinding="{Binding Company}" 
    DependentValueBinding="{Binding Savings}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文