*Attribute()

Specifies a value to be applied to each layer of an attribute.

Syntax

*Attribute(attribute, value, [additional values])

Application

MotionView, HyperView, HyperGraph, and Templex.

Arguments

attribute
The attribute to be set across all entities each time the report is applied. Supported plot attributes include:
linestyle
The line style.
linethickness
The line thickness.
linecolor
The line color.
symbolcolor
The symbol color.
symbolstyle
The symbol style.
barcolor
The bar color.
barstyle
The bar style.
value
The value to be set for the attribute across all entities when the report is applied. See *Line() *SetBarDefaults(), and *Symbol() for valid values.
[additional values]
For each subsequent application of the report, the next value in the list of values will be used. The application restarts with the first value after all values have been applied.

Example

*BeginAttributes(plot)
  *Attribute(linestyle, 1, 2, 5, 3)
  *Attribute(linecolor, 20, 6, 28, 23)
  *Attribute(linethickness, 1, 1, 1, 1)
  *Attribute(symbolcolor, 20, 6, 28, 23)
  *Attribute(symbolstyle, 0, 0, 0, 0)
  *Attribute(barcolor, 1, 2, 3, 4, 60)
  *Attribute(barstyle, 0, 1, 2, 3, 4)
*EndAttributes()

Context

*BeginAttributes()