Calculate Method (ICustomTrendLine)
In This Topic
Calculates the points of the TrendLine to be plotted, the X values and Y values must be returned by
GetXValues and
GetYValues methods.
Syntax
'Declaration
Sub Calculate( _
ByVal As TrendLine, _
ByVal () As System.Double, _
ByVal () As System.Double _
)
void Calculate(
TrendLine ,
System.double[] ,
System.double[]
)
Parameters
- tl
- TrendLine.
- x
- X value,
- y
- Y value.
See Also