grid background?

is it possible to set blur gradient grid background?


1 Reply

RN Rahul Narayanasamy Syncfusion Team February 25, 2022 09:42 AM UTC

Hi Jiraphon, 

Greetings from Syncfusion. 

We suspect that you want to apply background color to Grid rows and header. You can achieve your requirement by using below CSS. Find the below code snippets and documentation for your reference. 


<style> 
   .e-grid th.e-headercell { 
        background-color: bisque; 
    } 
    .e-grid tr.e-row.e-altrow { 
        background-color: bisque; 
    } 
    .e-grid tr.e-row.e-row { 
        background-color: bisque; 
    } 
</style> 

Please let us know if you have any concerns. 

Regards, 
Rahul  


Loader.
Up arrow icon