1

在 GROUP BY 之后,可以使用哪种方法对网格视图中的摘要进行颜色编码?我可以在特定记录级别的网格下更改颜色代码的值,但是对于累积值,我遇到了困难。

图片链接

请找到图像链接和蓝色突出显示部分的访问计数行的时间戳,需要进行颜色编码。

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;
}
4

1 回答 1

0

This might help you....

 protected void ASPxGridView1_HtmlFooterCellPrepared(object sender, ASPxGridViewTableFooterCellEventArgs e)
        {
            if (e.Column is GridViewDataColumn  )((GridViewDataColumn)e.Column).FieldName == "Freight")
            {
                e.Cell.ForeColor = Color.Blue;
                e.Cell.Font.Bold = true;
            }
}
于 2017-12-18T10:08:00.437 回答