"curveMinX"
Determines the lowest scale value of X for the curve "Name"; for value over value display.
Synopsis
setValue(string shape, "curveMinX", string Name, float Value);
getValue(string shape, "curveMinX", string Name, float &Value);
shape.curveMinX(string Name, float Value);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
Name | Name of a curve |
Value | Lowest scale value |
Description
This attribute is used to define the lowest scale value of X for a curve with value value display. The functions "curveAutoscale" and "curveAutoscaleX" must be deactivated.
Example
main()
{
shape tr=getShape("trend1");
...
// Autoscaling must be deactivated
tr.curveAutoscale("curve1")=FALSE;
tr.curveAutoscaleX("curve1")=FALSE;
// Sets Min/Max values of the X-axis
tr.curveMaxX("curve1", 50);
tr.curveMinX("curve1", 0);
// Sets Min/Max values of the Y-axis
tr.curveMax("curve1", 80);
tr.curveMin("curve1", 0);
...
}
Assignment
Trend