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
320
How to configure iggrid.
posted

Hello,

1. I want to to hide Column Header, Row Header and Measure Header of iggrid.
2. I want to change the color of the Pivot Grid, I can configure the code does.

Please give me suggest. 

Thank you.
Sulada 

Parents
No Data
Reply
  • 7435
    Verified Answer
    Offline posted

    Hello Sulada,
    To hide the Column Header, Row Header and Measure Header of Pivot Grid and change the color of it you have to change the following style as:

    <style>
    //for Change the color
     .ui-widget-header{
      background: yellow;
      }


    //For Hide the row  
      #pivotGrid_measures {  
        display : none ;
       }
      #pivotGrid_columns
      {  display : none ; }   
      
        </style>
    I am attaching the sample project use to test. Please find the attachment to achieve the desired behavior in the Pivot Grid.

    In the sample I changed the Pivot Grid color as black.

    PivotGrid.zip
Children