2017-09-11 10 views
0

私はColumnSeriesのWPFツールキットチャートを持っています。 ColumnSeriesは、シリーズ内のすべての列に影響の背後にあるコードでSelectionChangedイベントとデフォルトのスタイルを持っている(WPFツールキット)列の各DataPointの色を設定する

<chartingToolkit:ColumnSeries DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding ColumnValues}" IsSelectionEnabled="True" SelectionChanged="ColumnSeries_SelectionChanged"> 
    <chartingToolkit:ColumnSeries.DataPointStyle> 
     <Style TargetType="chartingToolkit:ColumnDataPoint"> 
      <Setter Property="Background" Value="{StaticResource HeaderForegroundBrush}" /> 
     </Style> 
    </chartingToolkit:ColumnSeries.DataPointStyle> 
</chartingToolkit:ColumnSeries> 
私は、単一のスタイルを分離コードで全体のColumnSeriesのスタイルを変更するが、どのようにすることができますすることができます

列は変更されますか?これはまったく可能ですか?

private void ColumnSeries_SelectionChanged(object sender, SelectionChangedEventArgs e) 
{ 
    Style lineStyle = new Style { TargetType = typeof(ColumnDataPoint) }; 
    lineStyle.Setters.Add(new Setter(ColumnDataPoint.BackgroundProperty, (Brush)Application.Current.Resources["Line1Brush"])); 
    ((ColumnSeries)sender).DataPointStyle = lineStyle; 
} 

答えて

1

あなたは例えば、ビジュアルツリー内のColumnDataPointの要素を検索し、あなたが個々の要素の好きなプロパティを設定するヘルパーメソッドを使用することができます。:

private void ColumnSeries_SelectionChanged(object sender, SelectionChangedEventArgs e) 
{ 
    ColumnSeries cs = sender as ColumnSeries; 
    IEnumerable<ColumnDataPoint> columns = FindVisualChildren<ColumnDataPoint>(cs); 
    foreach (var column in columns) 
    { 
     if (column.DataContext == e.AddedItems[0]) //change the background of the selected one 
     { 
      column.Background = Brushes.DarkBlue; 
      break; 
     } 
    } 

} 

private static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject 
{ 
    if (depObj != null) 
    { 
     int NbChild = VisualTreeHelper.GetChildrenCount(depObj); 

     for (int i = 0; i < NbChild; i++) 
     { 
      DependencyObject child = VisualTreeHelper.GetChild(depObj, i); 

      if (child != null && child is T) 
      { 
       yield return (T)child; 
      } 

      foreach (T childNiv2 in FindVisualChildren<T>(child)) 
      { 
       yield return childNiv2; 
      } 
     } 
    } 
} 
関連する問題