Category / Section
How to customize group drop area text and height in GridDataControl?
You can customize the GroupDropArea display text using GroupDropAreaText property. You can also change its height by using GroupDropAreaHeight property. Refer the following code sample
XAML
<syncfusion:GridDataControl x:Name="dataGrid"
AutoPopulateColumns="False"
AutoPopulateRelations="False"
ColumnSizer="Star"
GroupDropAreaText="My GroupDrop Area"
GroupDropAreaHeight="200"
EnableVisualStyleForEditors="True"
ItemsSource="{Binding OrderList}"