Gantt chart from scratch
Task I'd like to create a Gantt chart with JavaFX from scratch. Example Let's say I have 2 machines Machine A and Machine B and they have 2 states Online (green) and Offline (red). I'd like to show their states at given time intervals in horizontal colored Bars, X-axis is the Date axis, Y-axis is the machine axis. Question Where do I start? Which classes do I need to use? It would be great if anyone has a minimal example and could share it. Thank you very much. It turned out that the BubbleChart source was a good example to start from. Basically you can use a modified version of the XYChart