"trendStop"
Stops the trend.
Synopsis
setValue(string shape, "trendStop");
shape.trendStop();
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
Description
Stops the trend. This parameter corresponds to 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.
Example
main()
{
shape tr=getShape("trend1");
tr.trendStop();
// Stops the trend
}
Assignment
Trend