Zed-Graph 以编程方式将比例设置为默认值
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于每个 x 轴和 y 轴,都会执行以下代码:
有关更多信息,请轻松查看源代码并搜索“将比例设置为默认值”。
For each x- and y-axis following code is executed:
For more information easily look in the source code and search for "Set Scale to default".
截至 2014 年,我无法让上述解决方案在 VS2008、C# 中工作。但我成功地执行了以下操作:
在包含图形组件的窗口的“VisibleChanged”事件处理程序中,我调用图形组件上的“RestoreScale”方法,并将主图形窗格作为参数传递。
As of 2014, I couldn't get the above solution to work in VS2008, C#. But I succeeded doing the following:
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.