I'm developing a java fx application and I'm using a TreeTableView, and when I insert some data inside it , it looks like this :
Is there a way , so I can make the columns stretch in order to view all the content inside the cell?
I'm developing a java fx application and I'm using a TreeTableView, and when I insert some data inside it , it looks like this :
Is there a way , so I can make the columns stretch in order to view all the content inside the cell?
You could use #setPrefWidth method from
TreeTableColumn
class to set preferred width for columns. As shown in this example.