Hello,
Is it possible to set background color of a WebHiearachicalDataGrid cell to be gradient?
Thanks.
Vic
Will answer myself:
<style>.GradientGreen{
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00FF00', endColorstr='#ccFF88'); </style>
This is for IE. You can find samples for other browsers on the Internet.
Then
<Columns><
ig:BoundDataField DataFieldName="Comments" Key="Comments" Hidden="false" Header-Text= "Comments" CssClass="GradientGreen"/></Columns>
Or from the code:
e.Row.Items[3].CssClass =
"GradientGreen"; }