"curveGridAutoX"

Turns on/off the automatic grid line positioning for value-over-value trend curves.

Synopsis

setValue(string shape, "curveGridAutoX", string curve, bool auto);

getValue(string shape, "curveGridAutoX", string curve, bool auto);

shape.curveGridAutoX(string curve, bool auto);

Parameter

Parameter Description
shape Object name
curve The curve
auto

TRUE = Automatic grid line positioning on

FALSE = Automatic grid line positioning off

Description

Turns on/off the automatic grid line positioning for value-over-value trend curves

Example

Automatic grid line positioning is on.

main()
{
  this.curveGridVisibleX("curve1", TRUE); 
  this.curveGridAutoX("curve1", TRUE);
}

Example

Automatic grid line positioning is off.

main()
{
  this.curveGridVisibleX("curve1", TRUE); 
  this.curveGridAutoX("curve1", FALSE);
}

Assignment

Trend