I am trying to change the color of a Title cell in a particular column of a DBGRID component in Delphi XE6. I used to paint column title when the grid was sorted by that certain column.
DBGRID1.Columns[1].Title.Color := clBlue;
Is this possible? Or is there a better way how to highlight sorted column?
DBGrid1.Columns[1].Title.Font.Color := clBlue;
? – Andy_D