3

I am using the silverlight toolkit lineseries control and want to get rid of the title but I cannot find a way via Expression Blend or VS. I have tried to change the TitleStyle and LegendStyle of the parenting chart but have found that obviously irrelevant. Any tips would be appreciated.

enter image description here

Leslie Davies
  • 4,052
  • 1
  • 16
  • 14

1 Answers1

2

Just want to give an update for anyone who runs into something similar.

Setting your chart's LegendStyle to as below will prevent the LineSeries title from appearing.

<charting:Chart.Legend>
    <Style TargetType=”datavis:Legend”>
        <Setter Property=”Width” Value=”0″/>
        <Setter Property=”Height” Value=”0″/>
    </Style>
 </charting:Chart.Legend>
Leslie Davies
  • 4,052
  • 1
  • 16
  • 14