Hi Gangatharan,
Thanks for contacting Syncfusion support.
You can achieve your requirement by using GridNumericColumn.MinValue and GridNumericColumn.MaxValue property. Please refer the below code example :
<sfDataGrid:SfDataGrid x:Name="dataGrid"
AllowSorting="True"
ItemsSource="{Binding OrderInfoCollection}">
<sfDataGrid:Columns>
<sfDataGrid:GridNumericColumn MappingName="ColumnName" MinValue="10" MaxValue="1000"/>
</sfDataGrid:Columns>
</sfDataGrid:SfDataGrid> |
Regards,
Ashok