AcManager.Controls.OxyPlotGraphViewer.CatmulLineSeries.GetNearestPoint C# (CSharp) Method

GetNearestPoint() public method

public GetNearestPoint ( OxyPlot.ScreenPoint point, bool interpolate ) : OxyPlot.TrackerHitResult
point OxyPlot.ScreenPoint
interpolate bool
return OxyPlot.TrackerHitResult
            public override TrackerHitResult GetNearestPoint(ScreenPoint point, bool interpolate) {
                return Points.Count < 2 ? null : base.GetNearestPoint(point, interpolate);
            }