Documentation

labelPosition

positions label above the control

string labelPosition;

Example

{view: "text", label:"Some Text", labelPosition:"Top"}

See also

Details

By default label features left alignment, so the top label will be placed to the left upper corner of the control.

Top right alignment is achieved by applying both properties:

{view: "text", label:"Some Text", labelAlign:"right", labelPosition:"Top"}
Back to top