I have below columnGroup in advancedDataGrid control and I want to show the header in red background color and also applied the style but the background color in the header does not show as red only the text color in the header is changed.
<mx:AdvancedDataGridColumnGroup textAlign="center" headerStyleName="myHeaderStyles" >
....
I also have the following style defined
<mx:Style>
.myHeaderStyles {
color: red;
fontWeight: bold;
background-color:red;
background-disabled-color:red;
area-fill:true;
}
</mx:Style>