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
135
igx-spreadsheet frozen header rows
posted

How can we frozen header rows while scrolling down in  igx spredsheet?

Parents
  • 1560
    Offline posted

    Hello,


    I have been looking into your question and a topic about Freezing and Splitting Panes that you might consider could be found here. As it is suggested there, in order to freeze rows, you need to enable the panesAreFrozen property and then set the frozenRows count as follows:

      const worksheet = this.spreadsheet.workbook.worksheets(0);
        worksheet.displayOptions.panesAreFrozen = true;
        1;
        worksheet.displayOptions.frozenPaneSettings.frozenRows = 2;
    
    
    

    If you require any further assistance on the matter, please let me know.


    Sincerely,
    Teodosia Hristodorova
    Software Developer

Reply Children
No Data