Perspective - Label
Component Palette Icon:
Description​
The Label component displays text and can be customized with a full menu of style options) for the appearance of text, background, border, color, etc. You can use bindings to display additional information on the Label component.
Properties​
Most Properties have binding options. For more information on Bindings, see Types of Bindings in Perspective. This section only documents the Props Category of properties. The other Categories are described on the Perspective Component Properties page.
Name | Description | Property Type |
---|---|---|
text | Text to display. New in 8.1.26 Text can also be entered directly to the label by deep selecting the component, which enables inline editing. Changes are immediately reflected in the text property field. | value: string |
alignVertical | Vertical alignment of the text within the component (top, center, or bottom), based on the dimensions of the component. Default is top. | value: string |
textStyle | New in 8.1.11 Sets a style for the text within this label. Full menu of style options is available for text, background, margin and padding, border, shape and miscellaneous. You can also specify a style class. | object |
style | Sets a style for this component. Full menu of style options is available for text, background, margin and padding, border, shape and miscellaneous. You can also specify a style class. | object |
Component Events​
The Perspective Event Types Reference page describes all the possible component event types for Perspective components. Not all component events support each Perspective component. The Component Events and Actions page shows how to configure events and actions on a Perspective component. Component scripting is handled separately and can be accessed from the Component menubar or by right clicking on the component.
Example​
Example 1​
Property | Value |
---|---|
props.text | (Expression Binding)"The time is : "+dateformat(now(),"h:mm a") |
props.style.borderStyle | groove |
props.style.padding | 12px |
Example 2​
Property | Value |
---|---|
props.text | Lorem ipsum dolor sit amet, consectetur adipiscing elit. |
props.textStyle.overflow | hidden |
props.textStyle.whiteSpace | nowrap |
props.textStyle.textOverflow | ellipsis |
props.style.borderStyle | double |