import {Component} from '@angular/core'; /** * @title Programmatically setting the free drag position */ @Component({ selector: 'cdk-drag-drop-free-drag-position-example', templateUrl: 'cdk-drag-drop-free-drag-position-example.html', styleUrls: ['cdk-drag-drop-free-drag-position-example.css'], }) export class CdkDragDropFreeDragPositionExample { dragPosition = {x: 0, y: 0}; changePosition() { this.dragPosition = {x: this.dragPosition.x + 50, y: this.dragPosition.y + 50}; } }