[]
Provides interface for implementing a user-defined TrendLine.
public interface ICustomTrendLine
| Name | Description |
|---|---|
| Text | Gets the text associated with the TrendLine shown in legend. |
| Name | Description |
|---|---|
| Calculate(TrendLine, double[], double[]) | Calculates the points of the TrendLine to be plotted, the X values and Y values must be returned by GetXValues() and GetYValues() methods. |
| GetXValues() | Returns an array that contains the X values of the TrendLine. |
| GetY(double) | Calculates the value of the TrendLine at specified X value. |
| GetYValues() | Returns an array that contains the Y values of the TrendLine. |