2

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 : enter image description here

Is there a way , so I can make the columns stretch in order to view all the content inside the cell?

Khafaga
  • 1,537
  • 4
  • 15
  • 24

1 Answers1

0

You could use #setPrefWidth method from TreeTableColumn class to set preferred width for columns. As shown in this example.

Branislav Lazic
  • 14,388
  • 8
  • 60
  • 85