Doubt about frozen columns

Hi, is it possible to remove the line that is marked when freezing a column, I was checking the documentation and I could not find any information about that.


Image_3913_1736290246536


Thanks


1 Reply 1 reply marked as answer

SD Sethupathy Devarajan Syncfusion Team January 8, 2025 11:24 AM UTC

Hi Raul Daniel Pimienta Ramos,


You could achieve this with defining FreezePaneLineColor as Transparent. We had shared the code snippet and simple sample for your reference.
 

Code snippets:

<syncfusion:SfDataGrid x:Name="sfGrid"

                       FrozenColumnCount="1"

                       ColumnWidthMode="Auto"

                       ItemsSource="{Binding Employees}">

 

    <syncfusion:SfDataGrid.DefaultStyle>

        <syncfusion:DataGridStyle FreezePaneLineColor="Transparent" />

    </syncfusion:SfDataGrid.DefaultStyle>

 

</syncfusion:SfDataGrid>


Regards,

Sethupathy D.


Attachment: SfDataGridSample_b1361fb.zip

Marked as answer
Loader.
Up arrow icon