I have a 2D pie series chart with showConnectors enabled . This works fine but the business wants white background for the label. So I added the following style
<Style x:Name ="customLabelStyle" TargetType="chart:SeriesItemLabel">
<Setter Property="Foreground" Value="Black" />
</Style>
and set this custom style as following in the piesereis definition.
psd.SeriesItemLabelStyle =
this.CustomLabelStyle;
psd.LabelSettings.ShowConnectors = true;
psd.LabelSettings.SpiderModeEnabled =
true;
When I set the customStyle , I get white background with black text but the connector lines are not displayed. I need the connector lines . What am I missing ? Any help is greatly appreciated.