cosi
cosi

Reputation: 1

Java Interactive Gantt Chart Drawing

I'm trying to draw an interactive "Gantt-Chart" in Java for a project at school. I'm not really used to working with Java-GUI, thats why I would need some Input from your side :)

What I'm trying to get (Example for 1 resource only)

Resource | Period 1 | P2 | P3 | P4 | P5 | P6 | ...
R1       |=====|    |=======|==========|
R1       |==========|       |====|

|=======| shall be a production scheduled on that specific resource

==> If there is more than 1 production per period, i don't want them to overlap, but place them beneath each other.

What I got already/thought about:

What I have no idea about:

I know that my questions are very.... unspecific... But maybe someone could give me some ideas about how to start, what classes I have to look into first to really realize how to do something like that...

Upvotes: 0

Views: 727

Answers (1)

Costin G.
Costin G.

Reputation: 21

If the Gantt chart is not your project but just a display you need then you can use a library like JFreeChart to make the plot.

Upvotes: 2

Related Questions