ZedGraph - 如何在不使用鼠标的情况下在 x,y 点显示光标?
我正在 Zedgraph 中绘制一条曲线,如下所示:
GraphPane myPane = zgc.GraphPane;
PointPairList list1 = new PointPairList();
for(int i =0; i<10; i++)
list1.Add(i,i);
LineItem myCurve = myPane.AddCurve("Title",
list1, Color.Red, SymbolType.None);
zgc.AxisChange();
zgc.Refresh();
How can I display acursor (or any other graph object) at a certain x
, y
point on myCurve< /代码>像这样:
SetCursor(myCurve, list1[3]);
I am drawing a curve in Zedgraph like this:
GraphPane myPane = zgc.GraphPane;
PointPairList list1 = new PointPairList();
for(int i =0; i<10; i++)
list1.Add(i,i);
LineItem myCurve = myPane.AddCurve("Title",
list1, Color.Red, SymbolType.None);
zgc.AxisChange();
zgc.Refresh();
How can I display a cursor (or any other graphic object) at a certain x
, y
point on myCurve
like this:
SetCursor(myCurve, list1[3]);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
了解曲线的特定点,您可以使用
GraphPane.GeneralTransform(...)< /code>
方法
因此,使用以下代码:
将为您提供转换为屏幕上特定点(以像素为单位)的坐标。
然后你需要找到一些更高级别的方法(可能在 Windows 窗体中......)将光标移动到该点。
Knowing specific point of your curve you can use
GraphPane.GeneralTransform(...)
methodSo using following code:
would give you coordinates transformed to specific point on screen (in pixels).
Then you need to find some higher-level method (probably in windows forms...) that would move your cursor to that point.
这是一个简单且更有效的示例,用于创建十字光标,十字光标是图形对象集合的一部分,因此您可以在其上进行缩放、打印操作。它在“GraphObjList”集合中添加两个“LineObj”。
代码: 将光标放在第一条曲线的第 10 个点
完成:使用 ZedGraph.dll 版本 5.1.2.878,您将在图形上看到一个蓝色的“十字”光标。
Here is a simple and more efficient example to create a cross cursor wich is part of the objects collection of the graph so you can operate zooming, printing on it. It add two "LineObj" in the "GraphObjList" collection.
The code : Put a cursor at the 10th point of the first curve
It's done : you'd have a blue "cross" cursor on your graphe using ZedGraph.dll Version 5.1.2.878.