C# mschart 上的额外 X 点
我在 .Net 4.0 WinForms 应用程序上使用 Chart 控件。
我正在绘制一条曲线,其中 x 值是月份(1 到 12),y 值是曲线的值。
我添加了点 1 到 12,但由于某种原因,图表显示为从 0 到 13。点 0 和 13 显然没有值,因此该线不会延伸到这些列。
如何从图表中删除 0 和 13 点?
I'm using the Chart control on my .Net 4.0 WinForms application.
I'm plotting a curve where the x-value is the month (1 to 12) an the y-value is the value of the curve.
I've added points 1 to 12, but for some reason the chart is shown from 0 to 13. Points 0 an 13 obviously have no value so the line does not extend to those columns.
How can I remove the 0 and 13 points from my graph?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在图表设置中设置轴最小值和最大值。还将 IsStartedFromZero 设置为 false。
假设一个图表区域:
You can set the Axis Minimum and Maximum values in your chart set up. Also set IsStartedFromZero to false.
Assuming one chart area: