Issue with grid lines rendering

Iupdated from 17.x , and now on v18.1.0.59 , the problem is strange rendreing of gridlines , photo is attached , the gridlines some times show up, sometimes not, sometimes partially 

       

   
       
           
               
                    
                   
                                               HeaderFontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               MappingName="ItemName"
                                               FontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               TextAlignment="End"
                                               AllowSorting="True"
                                               ColumnSizer="LastColumnFill"/>

                   
                                               HeaderFontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               MappingName="Qty"
                                               FontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               TextAlignment="End"
                                               AllowSorting="True"
                                               ColumnSizer="Auto"/>
                    
               
           
       
   

2 Replies 1 reply marked as answer

WA Waleed replied to Waleed June 29, 2020 10:35 PM UTC

Iupdated from 17.x , and now on v18.1.0.59 , the problem is strange rendreing of gridlines , photo is attached , the gridlines some times show up, sometimes not, sometimes partially 

       

   
       
           
               
                    
                   
                                               HeaderFontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               MappingName="ItemName"
                                               FontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               TextAlignment="End"
                                               AllowSorting="True"
                                               ColumnSizer="LastColumnFill"/>

                   
                                               HeaderFontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               MappingName="Qty"
                                               FontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               TextAlignment="End"
                                               AllowSorting="True"
                                               ColumnSizer="Auto"/>
                    
               
           
       
   


    <ContentPage.Content>
        <StackLayout Padding="5" VerticalOptions="FillAndExpand">
            <syncfusion:SfDataGrid x:Name="dataGrid" AutoGenerateColumns="False" ItemsSource="{Binding StoreItems}"  VerticalOptions="FillAndExpand">
                <syncfusion:SfDataGrid.Columns x:TypeArguments="syncfusion:Columns">
                    
                    <syncfusion:GridTextColumn HeaderText="{i18n:Translate Item}"
                                               HeaderFontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               MappingName="ItemName"
                                               FontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               TextAlignment="End"
                                               AllowSorting="True"
                                               ColumnSizer="LastColumnFill"/>

                    <syncfusion:GridTextColumn HeaderText="{i18n:Translate Qty}"
                                               HeaderFontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               MappingName="Qty"
                                               FontAttribute="{Binding Source={x:Static local:GlobalValues.FontAttributes}}"
                                               TextAlignment="End"
                                               AllowSorting="True"
                                               ColumnSizer="Auto"/>
                    
                </syncfusion:SfDataGrid.Columns>
            </syncfusion:SfDataGrid>
        </StackLayout>
    </ContentPage.Content>


KK Karthikraja Kalaimani Syncfusion Team June 30, 2020 11:45 AM UTC

Hi Waleed,

This is already known framework issue “Borders not showing properly in Higher devices like Samsung S8” and we have reported to Xamarin.Forms team. Currently, we are working on the suggestion provided by Xamarin team. So, we will update further details on 3rd June 2020. We appreciate your patience until then.

Report link :
https://github.com/xamarin/Xamarin.Forms/issues/10172

Regards, 
Karthik Raja 


Marked as answer
Loader.
Up arrow icon