ChartDirector 7.1 (.NET Edition)

RanTable.setCol2


Usage

[C#]public void setCol2(int colNo, double startValue, double minDelta, double maxDelta [, double lowerLimit [, double upperLimit ]]);
[VB]Public Sub setCol2(colNo As Integer, startValue As Double, minDelta As Double, maxDelta As Double [, lowerLimit As Double [, upperLimit As Double ]])

Description

Fill the given column in the RanTable with numbers that fluctuate randomly.

Arguments

ArgumentDefaultDescription
colNo(Mandatory)The column to fill. The first column is 0. The nth column is (n - 1).
startValue(Mandatory)The value of the first record in the column.
minDelta(Mandatory)The minimum change between two consecutive numbers.
maxDelta(Mandatory)The maximum change between two consecutive numbers.
lowerLimit[-Infinity]The minimum allowed value of the numbers.
upperLimit[+Infinity]The maximum allowed value of the numbers.

Return Value

None