Setting column width in Table View with CSS Editor

Finally! I could find the solution here.

This is the CSS to auto fit cells to the content:

.knime-table {
	width:100%;
	white-space: nowrap;
}
.knime-table-cell {
	width:100%;
}

:blush:

7 Likes