Version

GetSeriesValuePosition Method (Series)

If possible, will return the best available position within the series that has the best value match for the world position provided.
Syntax
'Declaration
 
Public Overridable Function GetSeriesValuePosition( _
   ByVal world As Point, _
   ByVal useInterpolation As Boolean, _
   ByVal skipUnknowns As Boolean _
) As Point
public virtual Point GetSeriesValuePosition( 
   Point world,
   bool useInterpolation,
   bool skipUnknowns
)

Parameters

world
The world coordinate for which to get a position for
useInterpolation
If true, interpolation should be used to get in-between values, rather than only the actual values in the data set.
skipUnknowns
If true, unknown values will be skipped when searching for a series value.

Return Value

The position in question, or NaN,NaN if no valid position is available.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also