删除asp.net mvc 3中的饼图切片标签

发布于 2024-12-20 00:21:41 字数 173 浏览 3 评论 0原文

我正在使用 Asp.Net Mvc 3 使用 Chart Helper 创建饼图,但我有一个问题,我不知道如何删除切片上的标签,我得到的是这样的:

在此处输入图像描述

我想删除图表中作为标签的名称。

I am using Asp.Net Mvc 3 to create a pie chart using Chart Helper, but I have a problem, I don´t know how to remove the labels that are on the slices, what I get is like this:

enter image description here

I want to remove the names that are labels in the chart.

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

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

发布评论

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

评论(1

暮年 2024-12-27 00:21:41

如果还没有,请将主题应用于您的图表。在主题中添加以下行 -

<Series>
  <Series Name="Series1" ChartType="Pie" CustomProperties="PieLabelStyle=Disabled">
  </Series>
</Series>

这将隐藏饼图上出现的标签。

Apply theme to your chart if you haven't. In theme add following line-

<Series>
  <Series Name="Series1" ChartType="Pie" CustomProperties="PieLabelStyle=Disabled">
  </Series>
</Series>

This will hide labels appearing on the pie chart.

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