Chapter Contents |
Previous |
Next |
SAS/AF Software: Class Dictionary |
Chart controls use title and footnote objects to control their titles and footnotes. You can specify
Each title and footnote object has the following attributes:
Attribute | Description |
---|---|
color | Color for the title or footnote text |
font | Font for the title or footnote text |
text | The text for the title or footnote |
justification | left, right, or center justification |
In build mode, when you set the title or footnote attributes in the Property sheet, an editor automatically opens so you can enter values for the title or footnote attributes.
To set titles or footnotes in SCL code, use the notation for complex attributes. For example, for a Chart control named chart1, the following code sets the text and text color for one title and one footnote:
chart1.title1.text='My Title'; chart1.title1.color='red'; chart1.footnote1.text='My Footnote'; chart1.footnote1.color='blue';
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.