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

de.gsi.chart.axes.spi.format.AbstractFormatter 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.axes.spi.format;

import java.util.List;

import de.gsi.chart.axes.Axis;
import de.gsi.chart.axes.AxisLabelFormatter;
import de.gsi.chart.axes.TickUnitSupplier;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.util.StringConverter;

/**
 * @author rstein
 */
public abstract class AbstractFormatter extends StringConverter implements AxisLabelFormatter {
    private static final TickUnitSupplier DEFAULT_TICK_UNIT_SUPPLIER = new DefaultTickUnitSupplier();
    private final ObjectProperty tickUnitSupplier = new SimpleObjectProperty<>(this,
            "tickUnitSupplier", AbstractFormatter.DEFAULT_TICK_UNIT_SUPPLIER);
    protected FormatterLabelCache labelCache = new FormatterLabelCache();
    protected List majorTickMarksCopy;
    protected double unitScaling;
    protected double rangeMin;
    protected double rangeMax;

    protected double localSchmidtTriggerThreshold = 0.01;
    protected DoubleProperty schmittTriggerThreshold = new SimpleDoubleProperty(this, "schmittTriggerThreshold",
            localSchmidtTriggerThreshold) {
        @Override
        public void set(final double value) {
            super.set(Math.abs(value));
        }
    };

    /**
     * sets the min/max threshold when to change from one formatter domain to
     * the other
     *
     * @return the Schmitt trigger threshold property
     */
    public DoubleProperty schmittTriggerThresholdProperty() {
        return schmittTriggerThreshold;
    }

    /**
     * Strategy to compute major tick unit when auto-range is on or when axis
     * bounds change. By default initialised to {@link DefaultTickUnitSupplier}.
     * 

* See {@link TickUnitSupplier} for more information about the expected * behaviour of the strategy. *

* * @return tickUnitSupplier property */ @Override public ObjectProperty tickUnitSupplierProperty() { return tickUnitSupplier; } /** * Returns the value of the {@link #tickUnitSupplierProperty()}. * * @return the TickUnitSupplier */ @Override public TickUnitSupplier getTickUnitSupplier() { return tickUnitSupplierProperty().get(); } /** * Sets the value of the {@link #tickUnitSupplierProperty()}. * * @param supplier * the tick unit supplier. If {@code null}, the default one will * be used */ @Override public void setTickUnitSupplier(final TickUnitSupplier supplier) { tickUnitSupplierProperty().set(supplier); } protected double getRange() { return Math.abs(rangeMax - rangeMin); } protected double getLogRange() { final double diff = getRange(); return diff > 0 ? Math.log10(diff) : 1; } /** * Construct a DefaultFormatter for the given NumberAxis * * @param axis * The axis to format tick marks for */ public AbstractFormatter(final Axis axis) { this(); if (axis == null) { return; } } @Override public void updateFormatter(final List newMajorTickMarks, final double unitScaling) { majorTickMarksCopy = newMajorTickMarks; this.unitScaling = unitScaling; this.rangeMin = +Double.MAX_VALUE; this.rangeMax = -Double.MAX_VALUE; for (Number num : majorTickMarksCopy) { double val = num.doubleValue(); if (Double.isFinite(val)) { this.rangeMin = Math.min(this.rangeMin, val); this.rangeMax = Math.max(this.rangeMax, val); } } this.rangeMin /= unitScaling; this.rangeMax /= unitScaling; rangeUpdated(); } protected abstract void rangeUpdated(); public AbstractFormatter() { super(); rangeMin = 0; rangeMax = 1; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy