"curveDelta"

Defines a delta time, in which the two values of the data points for a curve will be treated as the same. That means that they create a single point. A delta time is meaningful if one of the data points will not begin to send the values at exactly the same time.

Synopsis

setValue(string shape, "curveDelta",string curve, unsigned msec);

getValue(string shape, "curveDelta",string curve, unsigned &msec);

shape.curveDelta(string curve, unsigned msec);

Parameters

Parameter Description
shape Name of the object
Name Name of curve
on Delta time in milliseconds

Description

Defines a delta time, in which the two values of the data points for a curve will be treated as the same. That means that they create a single point even if the time of both values is not exactly the same. A delta time is meaningful if one of the data points will not begin to send the values at exactly the same time.

Example

main()
{
  shape tr = getShape("trend1");
  tr.curveDelta("curve1", 51);
}

Assignment

Trend