Is there any way to support wordwrap in headers

Tags: #<Tag:0x00007f8b1d5c84b0>

thanks

Hi @swk777

the only seems to be to set a mechanism in the colWidths that adds
HTML element to break the line

colHeaders: function(col){
    	if(col === 1){
      	return `<div class="wrapped"> My Column<br> number ${col}</div>`
      } else {
      	return col
      }
 }

https://jsfiddle.net/handsoncode/yupk7x2q/