While adding an Item within cdkDropList it comes to available left most position because of the data sorting property, but I would like to stop the auto arrange feature in my cdkDropList. Is it feasible? If yes then how?
Also is it possible to get the XY co-ordinate of those child items? need some help.
<div cdkDropList [cdkDropListData]="items" cdkDropListDropped)="drop($event)">
<div cdkDrag [cdkDragData]="item" *ngFor="let item of items;">
{{item.name}}
</div>
</div>