MatchStatTabBuilder.fxml 1.5 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.scene.control.TableColumn?>
  3. <?import javafx.scene.control.TableView?>
  4. <?import javafx.scene.layout.AnchorPane?>
  5. <?import javafx.scene.layout.BorderPane?>
  6. <AnchorPane xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.MatchStatTabController">
  7. <children>
  8. <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">
  9. <center>
  10. <TableView fx:id="matchStatTable" prefHeight="546.0" prefWidth="479.0" BorderPane.alignment="CENTER">
  11. <columns>
  12. <TableColumn fx:id="team" prefWidth="100.0" text="Team" />
  13. <TableColumn fx:id="gamesPlayed" prefWidth="87.0" text="Games played" />
  14. <TableColumn fx:id="win" prefWidth="63.0" text="Win" />
  15. <TableColumn fx:id="draw" prefWidth="75.0" text="Draw" />
  16. <TableColumn fx:id="loss" prefWidth="75.0" text="Loss" />
  17. <TableColumn fx:id="points" prefWidth="75.0" text="Points" />
  18. <TableColumn fx:id="goalsScored" prefWidth="85.0" text="Goals scored" />
  19. <TableColumn fx:id="goalsConceded" prefWidth="101.0" text="Goals conceded" />
  20. <TableColumn fx:id="diff" prefWidth="39.0" text="Difference" />
  21. </columns>
  22. </TableView>
  23. </center></BorderPane>
  24. </children>
  25. </AnchorPane>