OxyPlot触发LineSeries颜色更改通知

时间:2018-08-26 07:59:31

标签: c# wpf data-binding ivalueconverter oxyplot

我有一个oxyplot和一个带有ColorPickers的列表框,用于选择LineSeries颜色。

  • ColorPickers通过值转换器绑定到LineSeries(我无法使用oxyplot默认颜色转换器,因为ColorPickers使用可为空的Color-s,因此我不得不“自定义” OxyPlot.Wpf.OxyColorConverter) li>
  • 颜色绑定在两个方向上都起作用:如果我在ColorPickers中更改颜色,则首先调用ConvertBack,然后调用Convert函数。设置LineSeries颜色和ColorPicker颜色。
  • 在启动时,我将LineSeries添加到PlotModel.Series(见下文)
  • 此后,在添加第一个DataPoints之前,将调用ColorConverter.Convert函数,其值为= {A:0,B:1,G:0,R:0}。这会将ColorPicker颜色设置为某种透明(LineSeries颜色不变)

我想,问题是,在添加DataPoints之前,添加到PlotModel.Series的LineSeries没有有效的颜色集。

  • 在Series或LineSeries实例上找不到任何RaisePropertyChanged或类似的通知。
  • 我试图调用RaisePropertyChanged(“ PlotModel”);在第一个数据点之后-无效或与“ PlotModel.Series.Color”的任何组合
  • PlotModel.InvalidatePlot(true);在每个数据点之后被调用,但这不会通知ColorPickers颜色变化。

所以问题是:在手动更改ColorPickers之前,如何使ColorPickers在启动后占用LineSeries的有效颜色?

我想避免在实例化时手动设置颜色,现在我对PlotModel分配给它们的颜色感到满意。

OxyPlot和列表框:

<oxy:PlotView Grid.Column="0" Grid.Row="0" x:Name="plot1" Model="{Binding PlotModel}"/>
...
<ListBox Grid.Column="1" Grid.Row="0" ItemsSource="{Binding PlotModel.Series}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <CheckBox IsChecked="{Binding Path=IsVisible}" />
                <xctk:ColorPicker Width="30" ShowDropDownButton="False" SelectedColor="{Binding Path=Color, Mode=TwoWay,  UpdateSourceTrigger=PropertyChanged, Converter={StaticResource ColorConverter}}" Opacity="1" ShowRecentColors="True"/>
                <TextBlock Text="{Binding Path=Title}"/>
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

ColorConverter XAML资源:

<local:ColorConverter x:Key="ColorConverter"></local:ColorConverter>

和C#代码:

[ValueConversion(typeof(OxyColor), typeof(Rect))]
class ColorConverter : IValueConverter
{      
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value is OxyColor)
        {
            var color = (OxyColor)value;
            if ((targetType == typeof(Color)) || (targetType == typeof(Color?)))
            {
                return color.ToColor();
            }

            if (targetType == typeof(Brush))
            {
                return color.ToBrush();
            }
        }

        return null;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (targetType == typeof(OxyColor))
        {
            if (value is Color)
            {
                var color = (Color)value;
                return OxyColor.FromArgb(color.A, color.R, color.G, color.B);
            }

            if (value is SolidColorBrush)
            {
                var brush = (SolidColorBrush)value;
                Color color = brush.Color;
                return OxyColor.FromArgb(color.A, color.R, color.G, color.B);
            }
        }

        return null;
    }

}

这是我动态添加新LineSeries的方式:

LineSeries l = new LineSeries { LineStyle = LineStyle.Solid, Title = title };
PlotModel.Series.Add(l);

1 个答案:

答案 0 :(得分:0)

修改LineSeries实例的工作原理:

LineSeries l = new LineSeries { LineStyle = LineStyle.Solid, Title = title, Color = PlotModel.DefaultColors[PlotModel.Series.Count] };

还有另一种方法吗?例如。某种颜色属性更改事件?