Hi all,
I'm attempting to add the FrozenColumnCount property into my application. I add the appropriate line of code to my xaml file(highlighted in bold at the bottom of my code block)
```
<syncfusion:SfDataGrid
ItemsSource="{Binding ProductItems}"
ColumnWidthMode="Auto"
GridLinesVisibility="Both"
HeaderGridLinesVisibility="Both"
AutoGenerateColumnsMode="None"
FrozenColumnCount="1"
>
```
However when I build my app, I receive the following error
The property 'FrozenColumnCount' was not found in type 'SfDataGrid'
I've only added that singular line to my xaml file to achieve the needed result. Is there anything I need to add to get it to work ?