Hi there guys, I'm trying to use the Row Color tool to color the whole Row, but the color doesn't work the same way as i select Style Background, if I use a background it respects my Alternative Colors background, however the row color option doesn't at all, it just keeps all the same color without having alternative bg.
Here are some examples and a small loom to share what I mean, why doesn't it work the same?
So the Row Color tools iterates through all of your rows and applies the colors based on the logic you provided, in this case it will be either ECF6E9 OR FCEFEF, no other colors will apply, included the ones from your alternative background.
If you want the alternative colors to still be shown, then your Row Color logic could change to something like:
Hi @MiguelOrtiz thanks but thats obviously not my question, sorry if I explained wrong.
What am I trying to say is not alternative colors itself, but there are TONES perhaps If you get both images I share, you can see that if i use background, there will be TWO TONES of green based on odd or even rows.
Meawhile the Row Colors, doesn't not keep the two tones, and only does one tone, of green.
The logic of the red and green obviously i understand, im talking about the SHADES. Here is a simple example so hopefully there are no misunderstanding again.
Actually I noticed that it is from my template that I had added a 10% shade on alternative rows, background respects that meanwhile row colors doesnt.
So in the example you provided you wrote {{ currentRow.text ? "blue" : ""}}. As text is defined for all the rows (as it is considering your'e usign the demo data), the blue will apply to all rows, which means it is overriding the background alternative colors. If you instead write currentRow.enabled, or as per my example {{ currentRow.teams.includes ("Sales") ? "blue" : "" }} you will see that the blue color will apply only for the rows that return true, whereas for the others the alternative colors will remain.