Handsontable hideColumn is not working

Tags: #<Tag:0x00007f8b2b189cd8>

Hello. I’m the beginner about handsontable.
There is my code.
but hideColumn is not working even i set column width 0.

    //handsontable 
        var rowlength = 1;
        var ReportContainer = document.getElementById('divTable');

        ReportContainer = new Handsontable(ReportContainer, {
            hiddenColumns: {
                columns: [0],
                indicators:true
            },
            colHeaders: ['start', 'end'],
            columns: [
                {width : 100 }, { width : 0}
            ],
            
        }); 
          ReportContainer.render();
          ReportContainer.hideColumn(0); 

image

Sorry. I have solved this problem.

I’m happy to hear that the issue is solved.
We are closing the thread. Please feel free to open a new one when needed.