"curveGridAuto"

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

Synopsis

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

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

shape.curveGridAuto(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-time trend curves

Example

Automatic grid line positioning is on.

main()
{
  this.curveGridVisible("curve1", TRUE); 
  this.curveGridAuto("curve1", TRUE);
}

Example

Automatic grid line positioning is off.

main()
{
  this.curveGridVisible("curve1", TRUE); 
  this.curveGridAuto("curve1", FALSE);
}

Assignment

Trend