'Declaration
Sub DataSeries( _ ByVal fillDown As System.Boolean, _ ByVal type As DataSeriesType, _ ByVal date As DataSeriesDate, _ ByVal step As System.Double, _ ByVal stop As System.Double, _ ByVal trend As System.Boolean _ )
'Usage
Dim instance As IRange Dim fillDown As System.Boolean Dim type As DataSeriesType Dim date As DataSeriesDate Dim step As System.Double Dim stop As System.Double Dim trend As System.Boolean instance.DataSeries(fillDown, type, date, step, stop, trend)
void DataSeries( System.bool fillDown, DataSeriesType type, DataSeriesDate date, System.double step, System.double stop, System.bool trend )
Parameters
- fillDown
- Specifies that this method should fill down if true or fill across if false.
- type
- Specifies the type of fill to perform.
- date
- Specifies the type of date operation to be performed when DataSeriesType.Chronological is used.
- step
- Specifies the amount to increment by.
- stop
- Specifies the value to stop at; use double.PositiveInfinity to fill the entire range.
- trend
- Specifies that the existing data should be analysed and new data generated from the resulting curve if true, or that a standard fill should be performed if false.