"curveGridAboveCountX", "curveGridBelowCountX"
The attribute "curveGridAboveCountX" sets the number of grid lines that are shown above the reference value for the XY Trend curves of the X part and the "curveGridBelowCountX" the number of grid lines that are shown below the reference value.
Synopsis
setValue(string shape, "curveGridAboveCountX", string curve, int
count);
getValue(string shape, "curveGridAboveCountX", string curve, int
count);
shape.curveGridAboveCountX(string curve, int count);
setValue(string shape, "curveGridBelowCountX", string curve, int count);
getValue(string shape, "curveGridBelowCountX", string curve, int
count);
shape.curveGridBelowCountX(string curve, int count);
Parameter
Parameter | Description |
---|---|
shape | Object name |
curve | The curve |
count | Number of grid lines that are shown above or below the reference value. |
Description
The attribute "curveGridAboveCountX"; sets the number of grid lines that are shown above the reference value for the XY Trend curves of the X part and the curveGridBelowCountX the number of grid lines that are shown below the reference value.
Example
The following example sets the number of grid lines to three.
main()
{
int abX;
this.curveGridAboveCountX("Curve",3);
getValue("","curveGridAboveCountX","Curve",abX);
DebugN("curveGridAboveCountX", abX);
}
Assignment
Trend