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

de.gsi.chart.plugins.YRangeIndicator 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.plugins;

import de.gsi.chart.axes.Axis;
import javafx.geometry.BoundingBox;
import javafx.geometry.Bounds;

/**
 * A rectangle drawn on the plot area, covering specified range of Y values, with an optional {@link #textProperty()
 * text label} describing the range.
 * 

* Style Classes (from least to most specific): *

    *
  • Label: {@code range-indicator-label, y-range-indicator-label, y-range-indicator-label[index]}
  • *
  • Rectangle: {@code range-indicator-rect, y-range-indicator-rect, y-range-indicator-rect[index]}
  • *
* where {@code [index]} corresponds to the index (zero based) of this indicator instance added to the * {@code XYChartPane}. For example class {@code y-range-indicator-label1} can be used to style label of the second * instance of this indicator added to the chart pane. * * @author mhrabia */ public class YRangeIndicator extends AbstractRangeValueIndicator { /** * Creates a new instance that indicates given Y range of the specified Y axis. * * @param axis the axis this indicator is associated with * @param lowerBound lower bound (min value) of the range * @param upperBound upper bound (max value) of the range */ public YRangeIndicator(final Axis axis, final double lowerBound, final double upperBound) { this(axis, lowerBound, upperBound, null); } /** * Creates a new instance that indicates given Y range. * * @param axis the axis this indicator is associated with * @param lowerBound lower bound (min value) of the range * @param upperBound upper bound (max value) of the range * @param text the indicator's {@link #textProperty() label's text} */ public YRangeIndicator(final Axis axis, final double lowerBound, final double upperBound, final String text) { super(axis, lowerBound, upperBound, text); } @Override void updateStyleClass() { setStyleClasses(label, "y-", AbstractRangeValueIndicator.STYLE_CLASS_LABEL); setStyleClasses(rectangle, "y-", AbstractRangeValueIndicator.STYLE_CLASS_RECT); } @Override public void layoutChildren() { if (getChart() == null) { return; } final Bounds plotAreaBounds = getChart().getCanvas().getBoundsInLocal(); final double minX = plotAreaBounds.getMinX(); final double maxX = plotAreaBounds.getMaxX(); final double minY = plotAreaBounds.getMinY(); final double maxY = plotAreaBounds.getMaxY(); final Axis yAxis = getNumericAxis(); final double startY = Math.max(minY, minY + yAxis.getDisplayPosition(getUpperBound())); final double endY = Math.min(maxY, minY + yAxis.getDisplayPosition(getLowerBound())); layout(new BoundingBox(minX, startY, maxX - minX, endY - startY)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy