以下のコード スニペットで試してください。
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridDataItem)
{
GridDataItem item = e.Item as GridDataItem;
if (item.ItemIndex % 2 == 0)
{
item.BackColor = System.Drawing.Color.Red;
}
}
}