The Attributes argument allows you to override the individual default values of most chart elements. It consists of two sub-parameters: selector and declaration. The simplest form of the Attributes argument is:
ATTRIBUTES=(selector,declaration,declaration value)
The selector identifies an element of the chart, the declaration identifies a property, and the declaration value identifies the property’s value. For example, the following statement sets the text point-size for the entire chart:
ATTRIBUTES=('all','point-size',12)
If desired, you can override a specific chart element. For example, to override the point-size for the title, you could specify the following:
ATTRIBUTES=('title','point-size',16)
You can specify multiple selectors (use either an inline list, or a named list created with CREATE-LIST) and multiple declarations. For example, the following statement sets the point-size and foreground text color for Title and Sub-Title.
ATTRIBUTES=(LIST:('title','sub-title'),'point-size',16,foreground, ('red'))
Review the following topics for information on the selector and declaration sub-parameters.