Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
85
Cell Appearance overridden by AppStylist
posted

Hello

I have a gridcardview which is a part of a major project. I am trying to set different forecolor to cells depending upon their value. I have tried to set the appearance of the cells by checking the value and it works fine without the theme. But as soon as the theme is applied the color changes to white.

I had earlier read a post in forum which said that individual appearance is not overridden by the stylist. I have another grid in the same layout in which the appearance of the whole row is being set depending on the value of one cell and in this case the appearance works fine.

Could you provide any solution to why this might be happening

Parents
  • 12480
    Offline posted

    Hi Ishan,

    If you set the appearance on an individual row or cell with code like this:

    ultraGrid1.Rows[1].Cells[0].Appearance.ForeColor = Color.Yellow;

    then it should override AppStylist. How are you setting the appearances?

Reply Children