How to wrap a label

Hello Team,

I am using the below code. I want to wrap the label how to achieve that.Example I have a checkbox label name as “This is a Test checkbox”, So I want to make label as like below(‘Test checkbox’ should come below the ‘This is a’). Can you please give some solution.

This is a

Test checkbox

Example :

<!doctype html>

Property Sheet: Basic Initialization
webix.ui({
	
						cols : [
	                             {
	                           	  view:"label",
	                           	  value:"",
	                           	  label:"This is a Test checkbox", 
	                           	  labelAlign : "right",
	                           	  gravity:1,
	                           	  css:"wrap",
	                           	  },
	                           	{
	                       		  view:"checkbox",
	                       		  value: "",
	                       		  id:"test", 
	                       		  align:"right",
	                       		  labelWidth : 150,
	                       		  gravity:2,
	                            }
	                           
							]
					
});
	
</script>

You can redefine CSS or use the template:

http://webix.com/snippet/a32006dc