"curveGridVisible", "curveGridVisibleX"

The attribute "curveGridVisible" shows or hides the grid lines of a trend curve or an event curve. The attribute "curveGridVisibleX" shows the grid lines for the XY trend curve of the X part.

Synopsis

setValue(string shape, "curveGridVisible", string curve, bool show);

getValue(string shape, "curveGridVisible",string curve, bool show);

shape.curveGridVisible(string curve, bool show);

Parameter

Parameter Description
shape Object name
curve The curve
show

TRUE = Show the grid lines

FALSE = Hide the grid lines

Description

The attribute "curveGridVisible"; shows or hides the grid lines of a trend curve or an event curve.

Example

The following example hides the grid lines.

main()
{
  TREND1.curveGridVisible("Curve",FALSE);
}
Figure 1. A Trend with hidden Grid Lines

Assignment

Trend