Silverlight Chart – Hide Legend

Silverlight Chart – Hide Legend

   MainPage.xaml
 
   <Grid x:Name="LayoutRoot" Background="#FFF0F0F0">
 
      … …
 
      <toolkit:Chart x:Name="SalesChart" Title="Sales Report" … …>
 
         <toolkit:Chart.LegendStyle>
            <Style TargetType="FrameworkElement">
               <Setter Property="Width" Value="0" />
            </Style>
         </toolkit:Chart.LegendStyle>
 
         … …
 
      </toolkit:Chart>
 
      … …
 
   </Grid>