Calculates the interpolated X value of this series given the Y value.
Syntax
Visual Basic (Declaration) | |
---|
Public Function GetInterpolatedXValue( _
ByVal yValue As Object _
) As Object |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Series
Dim yValue As Object
Dim value As Object
value = instance.GetInterpolatedXValue(yValue)
|
Parameters
- yValue
- Specified Y value. This can be either a numeric or DateTime value.
Return Value
Returns either a numeric or DateTime value when the provided y value is within
the series range. Returns null otherwise.
See Also