私は Jim のソリューションを使用し (ちなみに、大変お世話になりました)、それをデフォルトのグラフ テンプレートに適用しました。
パレット領域には、シリーズの各行のリソース ディクショナリがあります。
Jim のコントロール テンプレートを使用してそれを取り除くことができた方法を次に示します。各 ResourceDictonary に配置できるため、1 行ずつ行う必要はありません。
<toolkit:ResourceDictionaryCollection>
<ResourceDictionary>
<!-- I wanted a solid color brush so I just went ahead and defined it in the palette-->
<SolidColorBrush x:Key="Background" Color="Green"/>
<Style x:Key="DataPointStyle" TargetType="Control">
<Setter Property="Background" Value="{StaticResource Background}"/>
<!-- below is where I entered Jim's control template into the default palette defined-->
<Setter Property="Template">
<ControlTemplate TargetType="charting:LineDataPoint">
<Grid x:Name="Root" Opacity="1"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</toolkit:ResourceDictionaryCollection>
これは少なくとも私にとってはうまくいき、多くの時間を節約できます(そして、抜く前にすでに多くの髪を節約しています)