| 123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import javafx.scene.control.TableColumn?>
- <?import javafx.scene.control.TableView?>
- <?import javafx.scene.layout.AnchorPane?>
- <?import javafx.scene.layout.BorderPane?>
- <AnchorPane xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.MatchStatTabController">
- <children>
- <BorderPane layoutX="110.0" layoutY="93.0" prefHeight="546.0" prefWidth="893.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
- <center>
- <TableView fx:id="matchStatTable" prefHeight="546.0" prefWidth="479.0" BorderPane.alignment="CENTER">
- <columns>
- <TableColumn fx:id="team" prefWidth="100.0" text="Team" />
- <TableColumn fx:id="gamesPlayed" prefWidth="87.0" text="Games played" />
- <TableColumn fx:id="win" prefWidth="63.0" text="Win" />
- <TableColumn fx:id="draw" prefWidth="75.0" text="Draw" />
- <TableColumn fx:id="loss" prefWidth="75.0" text="Loss" />
- <TableColumn fx:id="points" prefWidth="75.0" text="Points" />
- <TableColumn fx:id="goalsScored" prefWidth="85.0" text="Goals scored" />
- <TableColumn fx:id="goalsConceded" prefWidth="101.0" text="Goals conceded" />
- <TableColumn fx:id="diff" prefWidth="39.0" text="Difference" />
- </columns>
- </TableView>
- </center></BorderPane>
- </children>
- </AnchorPane>
|