Is it possible to set ag-grid column as fixed so that it could not be moved?

Viewed 215
1 Answers

Pin your column to the left and set lockPinned to true, both in autoGroupColumnDef:

autoGroupColumnDef: {
    pinned: 'left',
    lockPinned: true,
  },

Demo.

Related