0
我正在基於JavaFx節點創建交互式gant圖。 圖片顯示我的概念。如何使用JavaFx向StackPane添加垂直線
1. Operations are placed inside of VBox
2. VBox is placed inside of StackPane and then inside of ScrollPane.
3. I have vertical time lines responsible for hours.
這是即時通訊使用用於添加垂直時間線的方法:
//sp is my StackPane
//line every 60 px/minutes
for (int i = 0; i < lines.length; i++) {
lines[i] = new Line(i * 60, 0, i * 60, sp.getWidth());
sp.getChildren().add(lines[i]);
}
問題是,所有的線都在甘特圖的中間添加一個接一個。基本上我認爲問題在於Java沒有正確地設置X(開始,結束),Y(開始,結束)值....
有什麼建議嗎?
非常感謝!這工作得很好 – kingkong