Skip to content
Snippets Groups Projects
Select Git revision
  • 31db5ab4c0ff8e0a4fb7d8f16bc9484699c9c1e2
  • master default
  • v5.2.2
  • v5.2.1
  • v5.2.0
  • v5.1.2
  • v5.1.1
  • v5.1.0
  • 5.0.2
9 results

PieChartGenerator$2.class

Blame
    • Robert Goldmann's avatar
      31db5ab4
      v.5.0.3 - (29) · 31db5ab4
      Robert Goldmann authored
      -Fixed issue where user have to press enter button in projectWindow (otherwise dropDown values would have been null)
      31db5ab4
      History
      v.5.0.3 - (29)
      Robert Goldmann authored
      -Fixed issue where user have to press enter button in projectWindow (otherwise dropDown values would have been null)
    chartGUI.fxml 4.00 KiB
    <?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" />