Rendering JavaFX 2 charts in background

后端 未结 3 1112
独厮守ぢ
独厮守ぢ 2021-01-05 13:36

I have an application that is used for data analysis. A big part of the application is the ability to be able to show charts based on the data assembled, and to be able to e

3条回答
  •  一向
    一向 (楼主)
    2021-01-05 13:52

    To run a JavaFX Task on the JFX thread, you can schedule the task to be run with Platform.runLater(myJFXTask);.

提交回复
热议问题