WPF在X轴上绘制多个值的图表

时间:2014-04-01 18:35:36

标签: .net wpf xaml charts wpftoolkit

我正在编写一个应该显示图表的WPF应用程序。我正在使用WPF工具包,似乎无法创建双重类别,如下图所示。我是WPF和XAML的新手,所以这可能是一个明显的解决方案。

我也在看ModernUI图表,但他们似乎也没有帮助。

有什么建议吗?

此外,如果您知道任何更好的文档/更容易使用的WPF图表是免费的,请告诉我。

这是我到目前为止的XAML。我不知道如何添加第二层自变量。

    <charting:Chart x:Name="chart_res_eng" Margin="578,301,-1033,192">
        <charting:Chart.Series>
            <charting:ColumnSeries ItemsSource="{Binding}"
                DependentValuePath="Value"
                IndependentValuePath="Key"
                IsSelectionEnabled="True" />
        </charting:Chart.Series>
    </charting:Chart>

在此之后,我将DataContext绑定到KeyValuePair列表。

这是我想要实现的输出:

This is how the chart should look like

0 个答案:

没有答案