TabSheetMeasures.HeaderHeight

Syntax

HeaderHeight: Number

Description

The HeaderHeight property sets height of table column headers.

Comments

Use JSON or the setHeaderHeight method to set the property value, and the getHeaderHeight method to get the property value.

Default height of table column headers is 18.

Example

To execute the example, the HTML page must contain the TabSheet component named tabSheet (see Example of Creating the TabSheet Component). Change height values of column headers and width value of row headers:

// Get table dimensions
var measures = tabSheet.getMeasures();
// Change column headers height
measures.setHeaderHeight(12);
// Change row headers width
measures.setRowHeaderWidth(16);
// Rerender table
tabSheet.rerender();

After executing the example height of table column headers equals to 12 pixels, and width of row headers equals to 16 pixels:

See also:

TabSheetMeasures