I've been working with javafx tables and managed to add a Table Column with progress bars using progressBarColumn.setCellFactory(ProgressBarTableCell.forTableColumn());, it uses a dummy Person class to get its data not javafx.concurrent.Task.
All works well but i was wondering if you could also add text to the progress bars in the table, sort of like swings JProgressBar setString(String string).
I'm rather noobish with javafx so i don't know much about it.