How to change the column resizing cursor position in WPF DataGrid (SfDataGrid)?
The default position for the resizing cursor is west to east in WPF DataGrid (SfDataGrid). If you want to change the flow direction of SfDataGrid, you need to change the resizing cursor by using SfDataGrid.ColumnResizingController.ResizingCursor.
this.dataGrid.ColumnResizingController.ResizingCursor = Cursors.SizeNS;
