Zedgraph:如何限制 Y 轴上的平移/滚动?
我有一个条形图,它永远不会低于零(永远不会变成负值),0 y 轴。如何限制平移/滚动以使 y0 线始终位于图表的底部? 要求是不能在视图中平移到 pointy = 0 以下;
I have a bar chart that will never go below zero (never go negative), 0 y axis. How do I limit panning/scrolling so that the y0 line is always at the base of the graph?
The requirement is to not be able to pan below pointy = 0 in view;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
订阅
ZoomEvent
或Scroll
事件(您必须检查哪一个更适合您的情况)。为该事件及其内部创建一个处理程序,检查当前
pane.YAxis.Scale.Min
pane.YAxis.Scale.Min
0. 如果是,请手动更改。那应该可以解决问题。
Subscribe for
ZoomEvent
orScroll
event (you must check which one would be more suitable in your situation).Create a handler for that event and inside of it, check if current
pane.YAxis.Scale.Min
< 0. If so, change it manually. That should do the trick.