header

hi
How do i get a header on my pivot table, like in the quick start
type:“header”, template:“My App!” },

many thanks

webix.ui({
    view:"pivot",  
    datatable:{
      scheme:{
          $init:function(obj){
          if(obj.open)
             delete obj.open;
          }
      }
    },
    fullscreen:true,
	height:800,
	fieldMap: { "Total" : "Total Schedules", "Hours" : "Hours Worked", "bookingtotal" : "Total Bookings"},
	url: "data.php",
	max: true,
	structure: {
		rows: ["schedule", "Resource"],
		columns: ["Month"], 
		values: [
			{ name: "Total", operation: "count"},
			{ name: "Hours", type: "type",},
			{ name: "bookingtotal", type: "type"},
			{ name: "Utilization", type: "type"}
		],
		filters:[]
	}
});

You can set header in the row above your pivot table

webix.ui({	
	rows:[
		{ 
			view:"template", 
			type:"header", 
			template:"Some text" 
		},
		{
			view:"pivot",  				
			...
		}
	]
});