| 123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import javafx.scene.control.TableColumn?>
- <?import javafx.scene.control.TableView?>
- <?import javafx.scene.layout.AnchorPane?>
- <AnchorPane xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.MatchTabController">
- <children>
- <TableView fx:id="matchTable" 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">
- <columns>
- <TableColumn fx:id="gameDateColumn" editable="false" prefWidth="75.0" text="Game date" />
- <TableColumn fx:id="homeTeamColumn" editable="false" prefWidth="75.0" text="Home team" />
- <TableColumn fx:id="awayTeamColumn" prefWidth="75.0" text="Away team" />
- <TableColumn fx:id="odds1Column" prefWidth="75.0" text="Odds 1" />
- <TableColumn fx:id="oddsXColumn" prefWidth="75.0" text="Odds X" />
- <TableColumn fx:id="odds2Column" prefWidth="75.0" text="Odds 2" />
- <TableColumn fx:id="goalsHomeColumn" prefWidth="75.0" text="Goals home" />
- <TableColumn fx:id="goalsAwayColumn" prefWidth="75.0" text="Goals away" />
- <TableColumn fx:id="goalDiff" prefWidth="75.0" text="Difference" />
- <TableColumn fx:id="avgScoreHomeColumn" prefWidth="75.0" text="Avg score home" />
- <TableColumn fx:id="avgConcededHomeColumn" prefWidth="75.0" text="Avg conceded home" />
- <TableColumn fx:id="avgScoreAwayColumn" prefWidth="75.0" text="Avg score away" />
- <TableColumn fx:id="avgConcededAwayColumn" prefWidth="75.0" text="Avg conceded away" />
- <TableColumn fx:id="countryColumn" prefWidth="75.0" text="Country" />
- <TableColumn fx:id="leagueColumn" prefWidth="75.0" text="League" />
-
- <TableColumn fx:id="homeWinColumn" prefWidth="75.0" text="Home Win" />
- <TableColumn fx:id="drawColumn" prefWidth="75.0" text="Draw" />
- <TableColumn fx:id="awayWinColumn" prefWidth="75.0" text="Away win" />
- </columns>
- </TableView>
- </children>
- </AnchorPane>
|