Hi,
How to get alternative row color fill in the gallery.
Here is a sample image I want the same pattern of fill in my gallery.

Hi,
How to get alternative row color fill in the gallery.
Here is a sample image I want the same pattern of fill in my gallery.
Hi @Subarna ,
I've made a test for your reference.
I assume there is a table:
ClearCollect(DataSource,"A","B","C","D")
You could set the gallery's items property to:
ForAll(
Sequence(CountRows(DataSource),1,1),
Patch({ItemColor:If(Mod(ThisRecord.Value,2)=1,Color.White,Color.WhiteSmoke)},Index(DataSource,ThisRecord.Value))
)
Insert a Rectangle into the gallery as the background and set it's Fill property to:
ThisItem.ItemColor
Best Regards,
Bof