Java Code Examples for org.jfree.data.RangeType#FULL

The following examples show how to use org.jfree.data.RangeType#FULL . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NumberAxis.java    From openstock with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 2
Source File: NumberAxis.java    From ccu-historian with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 3
Source File: NumberAxis.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 4
Source File: NumberAxis.java    From ECG-Viewer with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 5
Source File: RangeTypeTests.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Two objects that are equal are required to return the same hashCode.
 */
public void testHashCode() {
    RangeType r1 = RangeType.FULL;
    RangeType r2 = RangeType.FULL;
    assertTrue(r1.equals(r2));
    int h1 = r1.hashCode();
    int h2 = r2.hashCode();
    assertEquals(h1, h2);
}
 
Example 6
Source File: NumberAxis.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 7
Source File: RangeTypeTests.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Two objects that are equal are required to return the same hashCode. 
 */
public void testHashCode() {
    RangeType r1 = RangeType.FULL;
    RangeType r2 = RangeType.FULL;
    assertTrue(r1.equals(r2));
    int h1 = r1.hashCode();
    int h2 = r2.hashCode();
    assertEquals(h1, h2);
}
 
Example 8
Source File: NumberAxis.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 9
Source File: NumberAxis.java    From opensim-gui with Apache License 2.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 10
Source File: NumberAxis.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}
 
Example 11
Source File: NumberAxis.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a number axis, using default values where necessary.
 *
 * @param label  the axis label (<code>null</code> permitted).
 */
public NumberAxis(String label) {
    super(label, NumberAxis.createStandardTickUnits());
    this.rangeType = RangeType.FULL;
    this.autoRangeIncludesZero = DEFAULT_AUTO_RANGE_INCLUDES_ZERO;
    this.autoRangeStickyZero = DEFAULT_AUTO_RANGE_STICKY_ZERO;
    this.tickUnit = DEFAULT_TICK_UNIT;
    this.numberFormatOverride = null;
    this.markerBand = null;
}