码迷,mamicode.com
首页 > 其他好文 > 详细

Zedgraph悬停时显示内容闪烁的解决

时间:2017-05-31 18:47:07      阅读:594      评论:0      收藏:0      [点我收藏+]

标签:out   false   graph   point   src   value   contains   zed   mouse   

 

技术分享 中修改 HandleCursorValues 如下形式即可。

        // weng modified on 20170531 1016
        private Point lastMovedPoint;
        private Point HandleCursorValues( Point mousePt )
        {
            GraphPane pane = _masterPane.FindPane( mousePt );
            if (pane != null && pane.Chart._rect.Contains(mousePt) && !mousePt.Equals(lastMovedPoint))
            {
                double x, x2, y, y2;
                bool isShowYAxis2Value;

                pane.ReverseTransform( mousePt, out x, out x2, out y, out y2 );
                string xStr = MakeValueLabel( pane.XAxis, x, -1, true );
                string yStr = MakeValueLabel( pane.YAxis, y, -1, true );
                string y2Str = MakeValueLabel( pane.Y2Axis, y2, -1, true );
                isShowYAxis2Value = GraphPane.Y2Axis.IsVisible;

                this.pointToolTip.AutomaticDelay = 500;
                this.pointToolTip.SetToolTip( this, "( " + xStr + ", " + yStr + (isShowYAxis2Value?(", " + y2Str):"") + " )" );
                this.pointToolTip.Active = true;
                lastMovedPoint = mousePt;
            }
            else if (pane == null || !pane.Chart._rect.Contains(mousePt))
                this.pointToolTip.Active = false;

            return mousePt;
        }    

 

PS: 如果有帮助,别忘点赞!:)

 

Zedgraph悬停时显示内容闪烁的解决

标签:out   false   graph   point   src   value   contains   zed   mouse   

原文地址:http://www.cnblogs.com/arxive/p/6925174.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!