Example usage for org.jfree.chart.axis NumberAxis subclass-usage

List of usage examples for org.jfree.chart.axis NumberAxis subclass-usage

Introduction

In this page you can find the example usage for org.jfree.chart.axis NumberAxis subclass-usage.

Usage

From source file net.sf.mzmine.modules.visualization.histogram.HistogramDomainAxis.java

public class HistogramDomainAxis extends NumberAxis {

    private int visibleCount;
    private double lowerTickValue, upperTickValue;

    public HistogramDomainAxis() {

From source file gda.plots.SimpleNumberAxis.java

/**
 * Extends NumberAxis only so that we can attempt to keep track of the format of the tick mark labels so that the same
 * format can be used elsewhere, for example mouse tracking display.
 */
public class SimpleNumberAxis extends NumberAxis {
    private int digits;

From source file inflor.core.plots.LogicleAxis.java

@SuppressWarnings("serial")
public class LogicleAxis extends NumberAxis {

    private LogicleTransform transform;

    protected final NumberFormat numberFormatterObj = NumberFormat.getInstance();

From source file com.rapidminer.gui.new_plotter.engine.jfreechart.link_and_brush.axis.CustomNumberAxis.java

/**
 * Wrapper class for {@link NumberAxis} that overrides the resizing behaviour.
 * 
 * @author Nils Woehler
 * 
 */

From source file peakml.util.jfreechart.LognAxis.java

/**
 * 
 */
@SuppressWarnings("serial")
public class LognAxis extends NumberAxis {
    // constructor(s)

From source file com.googlecode.logVisualizer.chart.FixedZoomNumberAxis.java

/**
 * A "hacked" NumberAxis class. The only difference is that it zooms out to 0 to
 * the maximum x value instead of simply turning autoRange on, which gives less
 * than desirable results in the form of blank unused space behind the graphs.
 */
final class FixedZoomNumberAxis extends NumberAxis {

From source file org.altusmetrum.altosuilib_2.AltosUIAxis.java

public class AltosUIAxis extends NumberAxis {
    String label;
    AltosUnits units;
    Color color;
    int ref;
    int visible;

From source file inflor.core.plots.CategoricalNumberAxis.java

@SuppressWarnings("serial")
public class CategoricalNumberAxis extends NumberAxis {

    private HashMap<Integer, String> labelMap;

    public CategoricalNumberAxis(String name, HashMap<Integer, String> lableMap) {

From source file inflor.core.plots.LogicleNumberAxis.java

@SuppressWarnings("serial")
public class LogicleNumberAxis extends NumberAxis {

    private LogicleTransform logicle;

    public LogicleNumberAxis(String name, LogicleTransform transform) {

From source file com.epiq.bitshark.ui.PowerAxis.java

/**
 * Y-Axis for the frequency domain graph
 * 
 * @author Epiq Solutions
 */
public class PowerAxis extends NumberAxis {