What I would like to have is that the background of a cell in a datagrid is depending on the value of that cell. The idea is that is the value is within a certain range the background color is green, within another range orange and atherwise red. I have tried the CSS option to select modify the background color on the first character of the titel-tag, i.e. create a class like
.customcell td[title^="-" ] div {
color: white;
background-color: red;
}
but I was not able to identify a range. To make it more difficult I would like to identify different ranges for different columns.
Is that possible?
Regards,
Peter