How to remove legend from silverlight chart:
How to remove legend from silverlight chart:
Step-1:
Copy the following code, and past it second line of your chart xml code.(see the following image)<toolkit:Chart.LegendStyle>
<Style TargetType="toolkit:Legend">
<Setter Property="Width" Value="0"/>
<Setter Property="Height" Value="0"/>
</Style>
</toolkit:Chart.LegendStyle>
Comments
Post a Comment