Visual Basic (Declaration) | |
---|---|
Overloads Public Shared Function TrendLineExponential( _ ByVal seriesName As String, _ ByVal s As Series, _ ByVal step As Double, _ ByVal forward As Integer, _ ByVal backward As Integer _ ) As Series |
Visual Basic (Usage) | ![]() |
---|---|
|
C# | |
---|---|
public static Series TrendLineExponential( string seriesName, Series s, double step, int forward, int backward ) |
C++/CLI | |
---|---|
public: static Series^ TrendLineExponential( String^ seriesName, Series^ s, double step, int forward, int backward ) |
Parameters
- seriesName
- The name of the series which will be displayed on the chart, i.e. its label.
- s
- A statistical series.
- step
- The distance in the x-coordinate between two adjacent extended points. Please note that this also corresponds to the distance in the x-coordinate between the highest and lowest original data point and the first (above or below) additional evaluation point.
- forward
- The number of additional evaluation points which are evaluated above the x-coordinates of the original given data set.
- backward
- The number of additional evaluation points which are evaluated below the x-coordinates of the original given data set.