All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gsi.chart.viewer.DataView Maven / Gradle / Ivy

Go to download

This charting library ${project.artifactId}- is an extension in the spirit of Oracle's XYChart and performance/time-proven JDataViewer charting functionalities. Emphasis was put on plotting performance for both large number of data points and real-time displays, as well as scientific accuracies leading to error bar/surface plots, and other scientific plotting features (parameter measurements, fitting, multiple axes, zoom, ...).

There is a newer version: 11.2.7
Show newest version
package de.gsi.chart.viewer;

import de.gsi.chart.XYChart;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ListChangeListener;
import javafx.collections.ObservableList;

/**
 * Holds all charts/tables to be displayed
 *
 * @author Grzegorz Kruk (original idea)
 * @author rstein (adapted to JDVE<->JavaFX bridge
 */
public class DataView {

    public enum Layout {
        HBOX,
        VBOX,
        GRID
    }

    public DataView() {
        this(null);
    }

    public DataView(final String name) {
        setName(name);

        children.addListener((ListChangeListener) change -> {
            while (change.next()) {
                change.getRemoved().forEach(v -> v.setDataView(null));
                change.getAddedSubList().forEach(v -> v.setDataView(this));
                change.getAddedSubList().forEach(v -> getVisibleChildren().add(v));

                if (change.getRemoved().contains(getMaximizedView())) {
                    setMaximizedView(null);
                }

                // request layout because of added/removed DataViews

            }
        });
    }

    private final StringProperty name = new SimpleStringProperty(this, "name");

    public final StringProperty nameProperty() {
        return name;
    }

    public final String getName() {
        return nameProperty().get();
    }

    public final void setName(final String name) {
        nameProperty().set(name);
    }

    private final ObjectProperty layout = new SimpleObjectProperty<>(this, "layout", Layout.GRID);

    public final ObjectProperty layoutProperty() {
        return layout;
    }

    public final Layout getLayout() {
        return layoutProperty().get();
    }

    public final void setLayout(final Layout layout) {
        layoutProperty().set(layout);
    }

    private final ObservableList children = FXCollections.observableArrayList();

    public final ObservableList getChildren() {
        return children;
    }

    /**
     * Sugar method to add DataViewPane with chart.
     * @param chartName name of chart
     * @param chart reference
     */
    public void add(final String chartName, final XYChart chart) {
        getChildren().add(new DataViewPane(chartName, chart));
    }

    private final ObjectProperty maximizedView = new SimpleObjectProperty<>(this, "maximizedView");

    public final ObjectProperty maximizedViewProperty() {
        return maximizedView;
    }

    public final DataViewPane getMaximizedView() {
        return maximizedViewProperty().get();
    }

    public final void setMaximizedView(final DataViewPane view) {
        maximizedViewProperty().set(view);
    }

    private final ObservableList minimizedView = FXCollections.observableArrayList();

    public final ObservableList getMinimizedChildren() {
        return minimizedView;
    }

    private final ObservableList visibleView = FXCollections.observableArrayList();

    public final ObservableList getVisibleChildren() {
        return visibleView;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy