Silverlight Toolkit LineSeries 标题删除

发布于 2024-11-16 12:40:28 字数 209 浏览 2 评论 0原文

我正在使用 silverlight 工具包 lineseries 控件,想要删除标题,但我无法通过 Expression Blend 或 VS 找到方法。我尝试更改育儿图表的 TitleStyle 和 LegendStyle,但发现这显然不相关。任何提示将不胜感激。

在此处输入图像描述

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光病人 2024-11-23 12:40:28

只是想为遇到类似情况的人提供更新。

将图表的 LegendStyle 设置为如下将阻止显示 LineSeries 标题。

<charting:Chart.Legend>
    <Style TargetType=”datavis:Legend”>
        <Setter Property=”Width” Value=”0″/>
        <Setter Property=”Height” Value=”0″/>
    </Style>
 </charting:Chart.Legend>

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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文