You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
5.4 KiB
114 lines
5.4 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.chart.*?>
|
|
<?import java.lang.*?>
|
|
<?import javafx.geometry.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
<?import javafx.scene.text.*?>
|
|
<?import javafx.scene.web.*?>
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.TableColumn?>
|
|
<?import javafx.scene.control.TableView?>
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
<?import javafx.scene.text.Font?>
|
|
<?import javafx.scene.text.Text?>
|
|
<?import javafx.scene.web.WebView?>
|
|
|
|
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="568.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seng202.group9.GUI.AirportGraphController">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="50.0" minHeight="50.0" prefHeight="50.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="465.0" minHeight="10.0" prefHeight="465.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="118.0" minHeight="10.0" prefHeight="53.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Airport Graphs">
|
|
<font>
|
|
<Font size="36.0" />
|
|
</font>
|
|
<GridPane.margin>
|
|
<Insets left="15.0" />
|
|
</GridPane.margin>
|
|
</Text>
|
|
<Button mnemonicParsing="false" onAction="#goToRawData" prefHeight="25.0" prefWidth="100.0" text="Change Data" GridPane.halignment="LEFT" GridPane.rowIndex="2" GridPane.valignment="TOP">
|
|
<GridPane.margin>
|
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
|
</GridPane.margin>
|
|
</Button>
|
|
<TabPane prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE" GridPane.rowIndex="1">
|
|
<tabs>
|
|
<Tab text="Countries Graph">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
|
|
<children>
|
|
<BarChart fx:id="countryGraph" layoutX="107.0" layoutY="-72.0" prefHeight="436.0" prefWidth="800.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<xAxis>
|
|
<CategoryAxis fx:id="countryXAxis" side="BOTTOM" />
|
|
</xAxis>
|
|
<yAxis>
|
|
<NumberAxis side="LEFT" />
|
|
</yAxis>
|
|
</BarChart>
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</Tab>
|
|
<Tab text="Popular Destination">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
|
|
<children>
|
|
<BarChart fx:id="destGraph" layoutX="161.0" layoutY="-46.0" prefHeight="436.0" prefWidth="800.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<xAxis>
|
|
<CategoryAxis fx:id="destXAxis" side="BOTTOM" />
|
|
</xAxis>
|
|
<yAxis>
|
|
<NumberAxis side="LEFT" />
|
|
</yAxis>
|
|
</BarChart>
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</Tab>
|
|
<Tab text="Popular Transfer Airports">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
|
|
<children>
|
|
<BarChart fx:id="transGraph" layoutX="197.0" layoutY="-23.0" prefHeight="436.0" prefWidth="800.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<xAxis>
|
|
<CategoryAxis fx:id="transXAxis" side="BOTTOM" />
|
|
</xAxis>
|
|
<yAxis>
|
|
<NumberAxis side="LEFT" />
|
|
</yAxis>
|
|
</BarChart>
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</Tab>
|
|
<Tab text="Airlines Graph">
|
|
<content>
|
|
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
|
|
<children>
|
|
<BarChart fx:id="airlineGraph" layoutX="263.0" layoutY="-27.0" prefHeight="436.0" prefWidth="800.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<xAxis>
|
|
<CategoryAxis fx:id="airlineXAxis" side="BOTTOM" />
|
|
</xAxis>
|
|
<yAxis>
|
|
<NumberAxis side="LEFT" />
|
|
</yAxis>
|
|
</BarChart>
|
|
</children>
|
|
</AnchorPane>
|
|
</content>
|
|
</Tab>
|
|
</tabs>
|
|
</TabPane>
|
|
</children>
|
|
</GridPane>
|