javaswingjavafxgraphicsreal-time-data

2D Real time graphics in Java (IntelliJ)


I'm developing a program that need to display 3 real time graphs, currently I'm working on IntelliJ but if needed I'll move to another IDE like NetBeans, I've been searching some options but I have no clear idea of the direction what would be the best for this kind of aplications. This will be running on a windows bases enviroment

My observed options are trying JFreeChart but seems to be not so good for the real time nature, I haven't been able to find much documentation of JavaFX with this kind of application and idk how the java.awt.Graphics would work


Solution

  • If you are interested in real-time charting then you should have a look at this library: https://github.com/fair-acc/chart-fx But doing real-time charts is more than just drawing something. It also involves data acquisition, data reduction, etc. You should do some research first in order to find the best solution for your specific problem.