我正在使用silverlight工具包lineseries控制并希望摆脱标题,但我找不到通过Expression Blend或VS的方法。我试图更改育儿图表的TitleStyle和LegendStyle,但发现显然无关紧要。任何提示将不胜感激。
答案 0 :(得分:2)
只想为遇到类似事情的人提供更新。
将图表的LegendStyle设置为如下所示将阻止显示LineSeries标题。
<charting:Chart.Legend>
<Style TargetType=”datavis:Legend”>
<Setter Property=”Width” Value=”0″/>
<Setter Property=”Height” Value=”0″/>
</Style>
</charting:Chart.Legend>