程序中WPF Chart AreaSerie的样式

时间:2011-12-03 22:16:20

标签: wpf wpftoolkit

我需要在程序中创建WPF图表工具包中的区域系列,但我不知道如何更改系列颜色。

即使在XAML中,PathStyle的设置也不起作用。根据源文件区域系列应该绑定到背景颜色,但这也不起作用。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我也很难弄清楚如何改变颜色。更改背景颜色或ColorPalette似乎没有做任何事情。我解决了LineSeries的问题,方法是在样式中设置背景,使用样式中的setter(LineSeries的DataPointStyle,适用于DataPoint)  所以在vb:

    Dim NLS = New LineSeries()
    NLS.IndependentValuePath = "Time"
    NLS.DependentValuePath = "Quantity"
    NLS.Title = " Quantity in function of time"
    NLS.ItemsSource = MyItemSource
    Dim ThisStyle As New Style(GetType(DataPoint))
    ThisStyle.Setters.Add(New Setter(BackgroundProperty, New SolidColorBrush(MyWantedColor)))
    NLS.DataPointStyle = ThisStyle

我希望这可以帮助您解决区域系列的问题。