Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<AnchorPane prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="charts.ChartGUIController">
<children>
<VBox prefHeight="600.0" prefWidth="800.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<AnchorPane prefHeight="150.0" prefWidth="800.0">
<children>
<HBox alignment="CENTER" layoutX="70.0" layoutY="29.0" spacing="25.0" AnchorPane.leftAnchor="70.0" AnchorPane.rightAnchor="70.0" AnchorPane.topAnchor="30.0">
<children>
<VBox alignment="CENTER">
<children>
<Label prefHeight="25.0" prefWidth="64.0" text="Projekt:">
<font>
<Font name="System Bold" size="16.0" />
</font>
</Label>
<ComboBox fx:id="projectBox" prefWidth="150.0">
<VBox.margin>
<Insets top="11.0" />
</VBox.margin>
</ComboBox>
</children>
</VBox>
<VBox alignment="CENTER">
<children>
<Label prefHeight="25.0" prefWidth="64.0" text="Task:">
<font>
<Font name="System Bold" size="16.0" />
</font>
</Label>
<ComboBox fx:id="taskBox" prefWidth="150.0">
<VBox.margin>
<Insets top="11.0" />
</VBox.margin>
</ComboBox>
</children>
</VBox>
<VBox alignment="CENTER">
<children>
<Label prefHeight="25.0" prefWidth="64.0" text="Jahr:">
<font>
<Font name="System Bold" size="16.0" />
</font>
</Label>
<ComboBox fx:id="yearBox" prefWidth="150.0">
<VBox.margin>
<Insets top="11.0" />
</VBox.margin>
</ComboBox>
</children>
</VBox>
<VBox alignment="CENTER">
<children>
<Label prefHeight="25.0" prefWidth="64.0" text="Monat:">
<font>
<Font name="System Bold" size="16.0" />
</font>
</Label>
<ComboBox fx:id="monthBox" prefWidth="150.0">
<VBox.margin>
<Insets top="11.0" />
</VBox.margin>
</ComboBox>
</children>
</VBox>
</children>
</HBox>
</children>
</AnchorPane>
<AnchorPane fx:id="chartPane" prefHeight="450.0" prefWidth="800.0" VBox.vgrow="ALWAYS" />
</children>
</VBox>
</children>
</AnchorPane>