How to make a line of summation in the bottom of the table(TreeTableView - JavaFX or TableView) ? (Sorry for my english) write an example please.
Picture(Totals) for
EDIT :Not the answer of the question. I misunderstood the problem.
I don't have an example but I can explain you one way of doing it.
Each column should be a "TableColumn". This "TableColumn" should be related to an "ObsverbableList" with :
YourColumn.setCellValueFactory(
cellData ->CellData.getValue().yourObservableList.yourFloatProperty());
The numbers inside your list should be "FloatProperty".