Zed-Graph 以编程方式将比例设置为默认值

发布于 2024-12-11 03:42:32 字数 142 浏览 0 评论 0原文

我有一个 winforms 应用程序,它使用 zed-graph 库来绘制图表。当我右键单击控件时(应用程序运行时),会显示上下文菜单,我可以选择将比例设置为默认值
如何以编程方式实现此将比例设置为默认行为?

I've got a winforms application which uses zed-graph library to plot graphs. When I right-click on the control (while application is running) a context menu shows up and I can choose Set Scale to default.
How do I achive this Set Scale to default-behaviour programmatically?

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

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

发布评论

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

评论(2

只有一腔孤勇 2024-12-18 03:42:32

对于每个 x 轴和 y 轴,都会执行以下代码:

_scale._minAuto = true;
_scale._maxAuto = true;
_scale._majorStepAuto = true;
_scale._minorStepAuto = true;
_crossAuto = true;
_scale._magAuto = true;
_scale._formatAuto = true;

有关更多信息,请轻松查看源代码并搜索“将比例设置为默认值”。

For each x- and y-axis following code is executed:

_scale._minAuto = true;
_scale._maxAuto = true;
_scale._majorStepAuto = true;
_scale._minorStepAuto = true;
_crossAuto = true;
_scale._magAuto = true;
_scale._formatAuto = true;

For more information easily look in the source code and search for "Set Scale to default".

暗喜 2024-12-18 03:42:32

截至 2014 年,我无法让上述解决方案在 VS2008、C# 中工作。但我成功地执行了以下操作:

    private void frmGraph_VisibleChanged(object sender, EventArgs e)
    {
        ZGraphComponent.RestoreScale(ZGraph.GraphPane);
    }

在包含图形组件的窗口的“VisibleChanged”事件处理程序中,我调用图形组件上的“RestoreScale”方法,并将主图形窗格作为参数传递。

As of 2014, I couldn't get the above solution to work in VS2008, C#. But I succeeded doing the following:

    private void frmGraph_VisibleChanged(object sender, EventArgs e)
    {
        ZGraphComponent.RestoreScale(ZGraph.GraphPane);
    }

In the "VisibleChanged" event handler for the window containing the graph component, I call the "RestoreScale" method on the graph component, passing the main graph pane as the argument.

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