fontSize : string Default: undefined


The size of the font in the grid.

Examples

  
Edit this example
<table id="grid"></table> <script> $('#grid').grid({ dataSource: '../Grid/GetPlayers', fontSize: '14px', columns: [ { field: 'ID' }, { field: 'Name' }, { field: 'PlaceOfBirth' } ] }); </script>