ZedGraph 缩放和调整大小

发布于 2024-10-21 12:01:57 字数 114 浏览 1 评论 0原文

当我绘制图形、放大和缩小并重新绘制图形时,图形的位置不会改变。

我想要做的是,每当重新绘制数据时,视图都会更改以查看所有图形数据。如果您在重绘之前放大或缩小,这似乎会被禁用。

谢谢!

When I draw a graph, and zoom in and out of it, and redraw it, the location of the graph doesn't change.

What I want to be able to do is have the view change to see all of the graphed data whenever the data is redrawn. This seems to be disabled if you zoom in or out before redrawing.

Thanks!

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

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

发布评论

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

评论(2

薯片软お妹 2024-10-28 12:01:57

将控件的属性 .IsZoomOnMouseCenter 设置为 true:

zedGraphControl1.IsZoomOnMouseCenter = true;

此外,您可能希望更改水平和/或垂直缩放的设置,以防您希望图表仅沿一个方向缩放(拉伸)轴:

// Enable only horizontal zoom/stretch
zedGraphControl1.IsEnableHZoom = true;
zedGraphControl1.IsEnableVZoom = false;

Set the property .IsZoomOnMouseCenter to true for the control:

zedGraphControl1.IsZoomOnMouseCenter = true;

Also you may want to change the settings for horizontal and/or vertical zoom, in case you want to allow the graph to only zoom (stretch) along one axis:

// Enable only horizontal zoom/stretch
zedGraphControl1.IsEnableHZoom = true;
zedGraphControl1.IsEnableVZoom = false;
孤者何惧 2024-10-28 12:01:57

使用 Zedgraph 方法:
// 将比例范围恢复为所有缩放和平移操作之前的值
zg1.ZoomOutAll(GraphPane);

Use a Zedgraph method:
// Restores the scale ranges to the values before all zoom and pan operations
zg1.ZoomOutAll(GraphPane);

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