Blame view

src/main/resources/gui/dataPanel.fxml 972 Bytes
513c0341c   lsagona   add chart
1
  <?xml version="1.0" encoding="UTF-8"?>
f15a58907   lsagona   add better chart
2
3
  <?import javafx.scene.control.ListView?>
  <?import javafx.scene.control.SplitPane?>
513c0341c   lsagona   add chart
4
  <?import javafx.scene.layout.*?>
f15a58907   lsagona   add better chart
5
6
7
8
9
10
11
12
13
  <?import org.charts.dataviewer.javafx.JavaFxDataViewer?>
  <AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.241"
              xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.controller.DataPanelController">
      <SplitPane dividerPositions="0.1705685618729097" prefHeight="212.0" prefWidth="254.0" AnchorPane.bottomAnchor="0.0"
                 AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
          <ListView fx:id="dataListView" layoutX="-73.0" layoutY="14.0" prefHeight="200.0" prefWidth="200.0"
                    AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0"
                    AnchorPane.topAnchor="0.0"/>
              <JavaFxDataViewer fx:id="dataViewer"/>
513c0341c   lsagona   add chart
14
15
      </SplitPane>
  </AnchorPane>