I am using ag grid angular in pivot mode. The problem I am facing is unable to drag and drop columns in Row, value and column areads. I can add columns in these areas from ts file but not from UI with drag and drop. I can take out any column from these areas but not add and column. Here is ag code.
<ag-grid-angular #agGrid
style="width: 90%; height: 500px; margin-top: 30px;"
id="myGrid"
[rowData]="rowData"
class="ag-theme-balham"
[columnDefs]="columnDefs"
[enableColResize]="true"
[enableSorting]="true"
[sideBar]="sideBar"
[defaultColDef]="defaultColDef"
[pivotMode]="true"
[statusBar]="statusBar"
[enableRangeSelection]="true"
enableRowGroup="true"
dragAndDrop =" true"
[animateRows]="true"
(gridReady)="onGridReady($event)"></ag-grid-angular>
Anyone can tell me what I am missing here.
Plunker like for similar issue: https://plnkr.co/edit/xtPbAztpG14bleAF9bgy?p=preview