我想制作一个没有图例的平滑而漂亮的图形,因为它解释了自己(图表)。
我该如何隐藏它?我尝试了相同的方法,使plotarea透明:
<charting:Chart.PlotAreaStyle>
<Style TargetType="Grid">
<Setter Property="Background" Value="Transparent" />
</Style>
</charting:Chart.PlotAreaStyle>
如何以某种方式隐藏图例?
答案 0 :(得分:7)
我发现我可以通过将图表的LegendStyle
设置为Style
来隐藏图表图例,如下所示:
<charting:Chart.LegendStyle>
<Style TargetType="FrameworkElement">
<Setter Property="Width" Value="0" />
</Style>
</charting:Chart.LegendStyle>
奇怪的是,将Visibility
设置为Collapsed
不起作用 - 图例仍会在运行时出现。