如何关闭 ui-grid 列 header 格式

how to turn off ui-grid column header formatting

所以,我的 ui-grid

有这个列定义
columnDefs: [
        { name: 'Usr#', field: 'userNum', width: '*', resizable: true},         
        { name: 'Name', field: 'userName', width: '*', resizable: true},            
        { name: 'PID', field: 'userPID', width: '*', resizable: true},          
        { name: 'Flags', field: 'userFlags', width: '*', resizable: true},          
        { name: 'Blk Acc', field: 'dbAccess', width: '*', resizable: true},         
        { name: 'OS Rd', field: 'osReads', width: '*', resizable: true},            
        { name: 'OS Wr', field: 'osWrites', width: '*', resizable: true},           
        { name: 'Hit%', field: 'hitRatio', width: '*', resizable: true},            
        { name: 'Rec Lck', field: 'recLks', width: '*', resizable: true},           
        { name: 'Rec Wts', field: 'recWts', width: '*', resizable: true},           
        { name: 'Line#', field: 'lineNum', width: '*', resizable: true},            
        { name: 'Program Name', field: 'procName', width: '*', resizable: true},            
    ]

我有这个网格:

ui-grid 很友好,并试图为我格式化列 headers - 但我不想这样 ;)

如何关闭此选项?

此外,是否可以将列设置为 auto-fit 最大数据项的宽度?

不重新格式化 header 的解决方法是使用 displayName 字段: 例如:

columnDefs: [
...
        { name: 'PID', displayName: 'PID', field: 'userPID', width: '*', resizable: true}, 
...