Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi. I want to change the row colors in the table to 2 different colors. For example, like white and gray. White background, gray background, white background, gray background respectively. I want this for ease of reading.
Thanksss.
If you just want to do it for reading purpose then you can try other alternate solution like
on hover change color of rows & font color
 
Select color as per your need.
or still you want to highlight the rows in grey & white pattern then you must have unique ID or Auto number field in your table then
in your dimension or in measure you can write expression for color like
if(mod(ID,2)=1,grey(),white())
Regards,
Prashant Sangle