"curveColor"

Sets the color of a curve.

Synopsis

setValue(string shape, "curveColor", string curve, string color);

getValue(string shape, "curveColor", string curve, string &color);

shape.curveColor(string curve, string color);

Parameters

Parameter Description
shape Name of the object
Name Name of the curve
Color Color string

Description

This attribute is used to access the color of a curve.

Example

The following example colors "myCurve" blue.

main()
{
  myTrend.curveColor("myCurve","blue");
}

Assignment

Trend