"curveFilled"

The attribute "curveFilled" sets the filling of a trend curve.

Synopsis

setValue(string shape, "curveFilled", string curve, int fillType);

getValue(string shape, "curveFilled", string curve, int &fillType);

shape.curveFilled(string curve, int fillType);

Parameter

Parameter Description
shape Object name
curve The curve
fillType

The fill type of a curve:

0 = not filled

1 = filled to bottom

2 = filled to ref.value

Description

The attribute "curveFilled" sets the filling of a trend curve.

Example

The following example sets the filling of a trend curve to 1 (filled to the bottom).

main()
{
  TREND1.curveFilled("test_curve",1);
}
Figure 1. A Trend and a Trend Curve filled to the bottom

Assignment

Trend