MS Chart Control - 如何更改 X 轴位置

发布于 2024-12-16 16:39:52 字数 149 浏览 0 评论 0原文

我们想要使用.Net 4.0中的MS图表控制库绘制具有–Ve和+Ve值的样条图。x轴标签,暗线图例始终显示在图表底部。我们想要移动x轴线条和图例,到 Y 轴上的第 0 个位置。基本上位于图表的中间(垂直)。有人这样做过吗?任何人都知道要设置的属性来实现这一点。任何指针都会有很大帮助。

We want to draw spline chart with both –Ve and +Ve values using MS chart control library in .Net 4.0 .The x-axis label, the dark line legends are always shown at the bottom of the chart.We want to move x axis line and legends, to the 0th position on Y axis .Basically in the middle of the chart (vertically). Has anybody done that ? Anybody knows properties to be set for achieving this.Any pointers would be of great help.

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

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

发布评论

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

评论(1

灵芸 2024-12-23 16:39:52

使用以下属性设置可以解决该问题:

Chart1.ChartAreas["ChartArea1"].AxisX.Crossing = 0.00;
Chart1.ChartAreas["ChartArea1"].AxisY.Crossing = 0.00;

Using the following property settings solves the issue:

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