"trendStop"
Stops the trend update.
Synopsis
setValue(string shape, "trendStop");
shape.trendStop();
Parameters
| Parameter | Description |
|---|---|
| shape | Name of the object |
Details
This parameter stops the updates of the trend until the update is started again. This corresponds with clicking the stop-watch in the icon bar. It is essential to stop the trend in order to change axis resolution, set minimums and maximums, and perform various other functions. See chapter Trend widget for details.
main()
{
shape tr=getShape("trend1");
tr.trendStop();
// Stops the trend
}
