wp7上的线图 [英] linegraph on wp7

查看:26
本文介绍了wp7上的线图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 amCharts 和他们的 SerialChart 与 LineGraph 相结合.我已经让它以这种方式工作:

I'm using amCharts and their SerialChart combined with a LineGraph. I've gotten it to work this way:

 <amq:SerialChart x:Name="_24HoursLineGraph" DataSource="{Binding Data}" CategoryValueMemberPath="Date"
                     AxisForeground="White"
                     PlotAreaBackground="Black"
                     GridStroke="DarkGray" Grid.Row="1" Margin="20">
        <amq:SerialChart.Graphs>
            <amq:LineGraph ValueMemberPath="Close" Title="Close" Brush="Blue" />

        </amq:SerialChart.Graphs> 
    </amq:SerialChart>

背后的代码:

public ObservableCollection<Currency> Data { get { return _data; } }

    private ObservableCollection<Currency> _data = new ObservableCollection<Currency>(){};

void SetContext(Item[] itemArray)
{
    _data = new ObservableCollection<Item>();    
                foreach (var item in itemArray)
                {
                    _data.Add(item);
                }
                _data.OrderByDescending(i => i.Date);

                this.DataContext = this;
}

我不明白如何定位折线图的数据上下文而不是设置整个数据透视表的数据上下文?我在三个不同的数据透视项中有三个图形,我需要分别设置它们的数据上下文.所以我想做一些类似的事情:

I don't understand how I can target the datacontext of the linegraph instead of setting the datacontext of the entire pivot? I have three graphs in three different pivot items and I need to set the datacontext of them individually. So instead I want to do something like:

_24HoursLineGraph.DataContext = theDataContext;

但这行不通.我还尝试使用 _24HoursLineGraph.Graphs[0].DataContext 访问线图本身,但这也不起作用.

But this doesn't work. I've also tried to access the linegraph itself with _24HoursLineGraph.Graphs[0].DataContext but that doesn't work either.

有什么建议吗?

推荐答案

Quick Charts 专为简单的场景而设计,多个图表只有一个数据源.快速图表不支持为每个图表使用完全独立的数据源.

Quick Charts is designed for simple scenarios with only one data source for multiple graphs. Using completely separate data sources for each graph is not supported in Quick Charts.

在您的情况下,您需要将所有数据源合并为一个,然后将每个图表上的 ValueMemberPath 设置为数据中的相应属性名称.

In your case you will need to merge all your data sources into one and then set ValueMemberPath on each graph to a respective property name in your data.

这篇关于wp7上的线图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆