|
|
|
|
@ -41,10 +41,73 @@
|
|
|
|
|
<Insets bottom="15.0" left="15.0" right="15.0" top="15.0" />
|
|
|
|
|
</GridPane.margin>
|
|
|
|
|
</Button>
|
|
|
|
|
<ScrollPane prefHeight="200.0" prefWidth="200.0" GridPane.rowIndex="1">
|
|
|
|
|
<content>
|
|
|
|
|
<VBox fx:id="chartContainer" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="463.0" prefWidth="798.0" />
|
|
|
|
|
</content>
|
|
|
|
|
</ScrollPane>
|
|
|
|
|
<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>
|
|
|
|
|
|