ASP.NET 图表值标签
我正在使用 ASP.NET 图表工具包 (http://code.msdn.microsoft.com/mschart< /a>),我想知道是否有办法打开堆叠图表的标签。默认情况下,当我使用堆积图绘制数据时,每个系列的值不会显示。我希望有一个属性(我不知道)可以让我在渲染图表时查看每个系列的值。
谢谢!
I'm using the ASP.NET Charting Toolkit (http://code.msdn.microsoft.com/mschart) and am wondering if there is a way to turn the labeling of the stacked chart to on. As a default, when I plot my data using the stacked chart, the values for each of the series do not show. I am hoping there is a property (that I don't know of) which can allow me to view the values for each of the series when the chart is rendered.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了需要修改的属性:
在 asp:Series 中,将名为 IsValueShownAsLabel 的属性设置为 true。
I've found the property that needs to be modified:
in asp:Series you set a property called IsValueShownAsLabel to true.