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