fontSize : string Default: undefined
The size of the font in the grid.
Examples
<table id="grid"></table>
<script>
$('#grid').grid({
dataSource: '../Grid/GetPlayers',
fontSize: '14px',
columns: [ { field: 'ID' }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
});
</script>