"showGrid"
This property activates or deactivates the grid of a trend.
Synopsis
setValue(string shape, "showGrid", bool on);
shape.showGrid(bool on);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
on | Activate (TRUE) or deactivate (FALSE) the grid. |
Description
This property activates or deactivates the grid of a trend. Per default the grid is shown in the background of a curve. With the aid of the "showBackgroundGrid" attribute or the trend editor the grid can be shown in the foreground. This is meaningful when the area between curve and reference line is filled in (see "fill" - Curve).
The following example activates the grid.
Example
main()
{
Trend1.showGrid(TRUE);
}