2

我正在尝试将 AmCharts QuickCharts 用于 WP7 并且失败得很惨。

我刚刚用 xaml 制作了一张这样的图表:

        <controls:PivotItem Header="24 hours">
            <amq:LineGraph Name="_24HoursLineGraph"></amq:LineGraph>
        </controls:PivotItem>

我不知道如何转换我的数据,以便折线图可以解释和渲染它。我还没有在任何地方找到一个可靠的教程,所以如果你知道在哪里可以找到它,请指出我的方向。我当然宁愿在这里看到一个关于如何使用折线图控件的很好的解释:)

有任何想法吗?

4

1 回答 1

0

尽管我不喜欢它,但我找到了一种解决方法。我将提出另一个关于如何灵活使用此控件的问题。

 <amq:SerialChart x:Name="_24HoursLineGraph" DataSource="{Binding Data24}" 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>

为此,您需要创建一个可观察集合并将整个枢轴控件的数据上下文绑定到该可观察集合。CategoryValueMemberPath 将查看对象的一个​​轴,而折线图的 ValueMemberPath 将查看对象的另一个维度。

有关更多详细信息,请参阅此问题

于 2011-06-14T16:06:57.747 回答