if you want to Change the DataGrid cell background with an itemRenderer, the solution is there:
If you want to get an alternating custom color, here a little hack:
g.beginFill(0xCC0033,0.02);
The second beginFill param is the alpha. By setting it low you get the alternating datagrid bg color and your custom item renderer bgcolor to blend, giving an alternating custom color background
It’s a hack but it works
Advertisement