Frozen column with striped row

I have a striped data grid that contains frozen columns. I'm finding that on the rows with the alternating background color when data scrolls behind the frozen column it is not hidden, it actually shows up behind the data in the frozen row.

Is there a way to correct this?

Hi @MD51504,

Is this reproducible in the online demos with any of the themes? This can happen if the alt row background color has some opacity, e.g. uses the rgba() or hsla() color models.

Applying solid colors for background should fix this:

.rz-grid-table {
    --rz-grid-stripe-background-color: #F0F8FF;
    --rz-grid-stripe-odd-background-color: #FFFFFF;
}

Thank you. That helped me fix it.