Articles in this section
Category / Section

How to set the CellType as PercentEdit in GridData for WPF?

1 min read

In GridDataControl, You can set the CellType as PercentEdit in GridDataVisibleColumn.ColumnStyle. You can limit the Min and Max Values for PercentEdit CellType by setting the MinValue and MaxValue properties in GridPercentEditStyleInfo. You can also limit the number of digits after the decimal point by setting PercentDecimalDigits property in NumberFormatInfo. Refer the following code sample.

 XAML

<syncfusion:GridDataVisibleColumn MappingName="SalesCredit" >
<syncfusion:GridDataVisibleColumn.ColumnStyle>
 <syncfusion:GridDataColumnStyle CellType="PercentEdit">
 <syncfusion:GridDataColumnStyle.NumberFormat>
   <global:NumberFormatInfo PercentDecimalDigits="4"/>
 </syncfusion:GridDataColumnStyle.NumberFormat>
  <syncfusion:GridDataColumnStyle.PercentEdit>
     <syncfusion:GridPercentEditStyleInfo MinValue="0" MaxValue="200"/>
  </syncfusion:GridDataColumnStyle.PercentEdit>
  </syncfusion:GridDataColumnStyle>
</syncfusion:GridDataVisibleColumn.ColumnStyle>
</syncfusion:GridDataVisibleColumn>

 

The following screenshot displays the output of the above code in GridDataControl.

Here MinValue is set as 0 and MaxValue as 200 in GridPercentEditStyleInfo for the SalesCredit” column whose CellType is PercentEdit. The number of digits after decimal point is set as 4 in the PercentDecimalDigits property.

Conclusion
I hope you enjoyed How to set the CellType as PercentEdit in GridData for WPF.
You can refer to our WPF Grid feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF Grid example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied