Row Height

It's possible to set height of each row in the grid.

Example
row-height.js
42px
$('#jquery-row-height-grid').guiGrid({

	columns: [{
		header: 'Number',
		field: 'number',
		width: 65
	}, {
		header: 'Name',
		field: 'name',
		view: GuiCellView.ITALIC
	}, {
		header: 'Position',
		field: 'position',
		view: GuiCellView.BOLD
	}, {
		header: 'Team',
		field: 'team'
	}],

	source: this.source,

	rowHeight: 42

});

Row Height - options

OptionsTypeDefaultDescription
rowHeightnumber- Specifies height of each row in the grid. Default value depends on selected theme.

Related articles: