"curveGridAboveCount", "curveGridBelowCount"

The attribute "curveGridAboveCount" sets the number of grid lines that are shown above the reference value and "curveGridBelowCount" the number of grid lines that are shown below the reference value.

Synopsis

setValue(string shape, "curveGridAboveCount", string curve, int count);

getValue(string shape, "curveGridAboveCount", string curve, int count);

shape.curveGridAboveCount(string curve, int count);

setValue(string shape, "curveGridBelowCount", string curve, int count);

getValue(string shape, "curveGridBelowCount", string curve, int count);

shape.curveGridBelowCount(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 "curveGridAboveCount" sets the number of grid lines that are shown above the reference value and "curveGridBelowCount" the number of grid lines that are shown below the reference value.

Example

The following example sets the number of grid lines to four.

main()
{
  TREND1.curveGridAboveCount("Curve",4);
  int count;
  getValue("","curveGridAboveCount","Curve",count);
  DebugN("curveGridAboveCount for curve ", count);
}

Assignment

Trend