欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

WInforn中设置ZedGraph的焦点显示坐标格式化以及显示三个坐标数的解决办法

程序员文章站 2023-11-13 11:57:58
场景 Winforn中设置ZedGraph曲线图的属性、坐标轴属性、刻度属性: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100112573 Winform中实现ZedGraph的多条Y轴(附源码下载): https://bl ......

场景

winforn中设置zedgraph曲线图的属性、坐标轴属性、刻度属性:

https://blog.csdn.net/badao_liumang_qizhi/article/details/100112573

winform中实现zedgraph的多条y轴(附源码下载):

https://blog.csdn.net/badao_liumang_qizhi/article/details/100132245

zedgraph设置显示坐标值

zgc.isshowcursorvalues = true;

但是在刷新曲线图之后出现了鼠标焦点出现三个坐标值

WInforn中设置ZedGraph的焦点显示坐标格式化以及显示三个坐标数的解决办法

 

 

WInforn中设置ZedGraph的焦点显示坐标格式化以及显示三个坐标数的解决办法

解决方法是在其鼠标焦点悬浮事件中格式化其要显示的值,修改为举例最近的去曲线上的点。

注:

博客主页:

关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

//显示焦点值事件
zgc.cursorvalueevent += zgc_cursorvalueevent;

 

然后在方法中

 

private static string zgc_cursorvalueevent(zedgraphcontrol sender, graphpane pane, point mousept)
        {
            
            curveitem nearstcurve;
            int i;
            double x = 0.0;
            double y = 0.0;
            global.zedgraphcontrol1.graphpane.findnearestpoint(mousept, out nearstcurve, out i);
            if (nearstcurve!= null && nearstcurve.points[i] != null && nearstcurve.points[i].x != null)
            {
                 x = nearstcurve.points[i].x;
            }
            if (nearstcurve!= null && nearstcurve.points[i] != null && nearstcurve.points[i].y != null)
            {
                 y = nearstcurve.points[i].y;
            }
            return "x:" + x.tostring() + "  y:" + y.tostring();
        }

 

效果

WInforn中设置ZedGraph的焦点显示坐标格式化以及显示三个坐标数的解决办法