|
sfGrid = new SfDataGrid();
sfGrid.BackgroundColor = Color.Transparent;
sfGrid.GridStyle = new TransparentStyle();
public class TransparentStyle: DataGridStyle
{
public override Color GetRecordBackgroundColor()
{
return Color.Transparent;
}
}
|
We have 3 grids ... the background color is applied appropriately to the first one but not the next two.
There is something that is not firing or being applied correctly on the second and third grids.
If I move the grids around it's always the first one that works and not the two successive ones.
Does the application of the record background color depend on things like visibility of the control? It should not but something is not being applied correctly.
I can see your grid calling for the color ( updateScrollerViewBackground ) but it seems it is not being applied correctly.