ZedGraph XAxis 位于图形矩形顶部

发布于 2025-01-08 07:01:02 字数 239 浏览 0 评论 0原文

有没有办法将 ZedGraph 的 X 轴定位在图表顶部,并在 Y 轴的比例上使用 IsReverse ,以便我的图表如下所示

  Y
X 0 1 2 3 4 5
  1
  2
  3
  4
  5

我应该使用 X2 轴来实现这一点吗?如果有 X2Axis,我不知道如何添加它。

我搜索了很多,但找不到答案。只是想确保在切换到微软图表之前这是不可能的。

谢谢。

Is there a way to position the XAxis of the ZedGraph on top of the graph and use IsReverse on the scale of the YAxis so that my graph looks like below

  Y
X 0 1 2 3 4 5
  1
  2
  3
  4
  5

Should I achieve this using X2 axis? I do not know how to add it if there is an X2Axis.

I have searched a lot and could not find an answer. Just wanted to make sure it is not possible before I switch to microsoft chart.

Thanks.

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

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

发布评论

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

评论(1

葵雨 2025-01-15 07:01:02

您可以通过执行以下操作使用 x2 轴来实现此目的:

GraphPane.X2Axis.IsVisible = true;
GraphPane.XAxis.IsVisible = false;
GraphPane.YAxis.Scale.IsReverse = true;

You can achieve that using x2 axis by doing the following:

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