After GROUP BY, which method can be used for color coding of summary in grid view? I am able to make changes in color code for value under grid at specific level of record, but for cumulative value, I am having difficulties.
Please find link for image and highlighted part in blue for timestamps for Visit Count row, which need to be color coded.
protected void ASPxGridView1_HtmlDataCellPrepared(object sender,
DevExpress.Web.ASPxGridViewTableDataCellEventArgs e) {
if (e.DataColumn.FieldName != "Budget") return;
if (Convert.ToInt32(e.CellValue) < 100000)
e.Cell.BackColor = System.Drawing.Color.LightCyan;
}
This might help you....