ASP Net Chart 控件栏高度
在 ASP.NET Web 项目中,我有一个像这样的 stackedbar100 图表:
图表的高度是设置为 50px,但正如您所看到的,显示了灰色部分。
我想做的是让绿色条占据全部 50px,没有灰色部分。
我已经查看了所有图表属性,但还没有找到执行此操作的属性。
On an ASP.NET web project, I have a stackedbar100 chart like this:
The height of the chart is set to 50px, but like you see there is a grey part showing.
What I would like to do is to make the green bar occupy all 50px and no grey part.
I've seen all the chart properties but haven't found the one that does this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的...在以下位置找到此选项:
图表 ->属性->图表区域 ->轴 ->规模-> IsMarginVisible -> False
对每个轴重复 确定
,删除左右边距:
Chart ->属性->图表区域 ->位置->将高度和宽度设置为 100%
谢谢
Ok... Found this option under:
Chart -> Properties -> Chart Areas -> Axes -> Scale -> IsMarginVisible -> False
Repeated for each axis
Ok, to remove the left and right margins:
Chart -> Properties -> Chart Areas -> Position -> Set Height and Width to 100%
Thanks