Java Code Examples for org.jfree.chart.axis.AxisLocation#getOpposite()

The following examples show how to use org.jfree.chart.axis.AxisLocation#getOpposite() . 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: CategoryPlot.java    From SIMVA-SoS with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation(0));
    }
    return result;
}
 
Example 2
Source File: CategoryPlot.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation(0));
    }
    return result;
}
 
Example 3
Source File: CategoryPlot.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation(0));
    }
    return result;
}
 
Example 4
Source File: XYPlot.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary range axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation());
    }
    return result;
}
 
Example 5
Source File: XYPlot.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary domain axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation());
    }
    return result;
}
 
Example 6
Source File: CategoryPlot.java    From ECG-Viewer with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation(0));
    }
    return result;
}
 
Example 7
Source File: CategoryPlot.java    From ECG-Viewer with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation(0));
    }
    return result;
}
 
Example 8
Source File: XYPlot.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary domain axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation());
    }
    return result;
}
 
Example 9
Source File: XYPlot.java    From ECG-Viewer with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary domain axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation());
    }
    return result;
}
 
Example 10
Source File: CategoryPlot.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation(0));
    }
    return result;
}
 
Example 11
Source File: XYPlot.java    From openstock with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary domain axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation());
    }
    return result;
}
 
Example 12
Source File: XYPlot.java    From SIMVA-SoS with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary range axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation());
    }
    return result;
}
 
Example 13
Source File: XYPlot.java    From SIMVA-SoS with Apache License 2.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary domain axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation());
    }
    return result;
}
 
Example 14
Source File: CategoryPlot.java    From ccu-historian with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation(0));
    }
    return result;
}
 
Example 15
Source File: XYPlot.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary range axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation());
    }
    return result;
}
 
Example 16
Source File: XYPlot.java    From ccu-historian with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary range axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation());
    }
    return result;
}
 
Example 17
Source File: XYPlot.java    From ccu-historian with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary domain axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation());
    }
    return result;
}
 
Example 18
Source File: CategoryPlot.java    From openstock with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation(0));
    }
    return result;
}
 
Example 19
Source File: CategoryPlot.java    From openstock with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a domain axis.
 *
 * @param index  the axis index.
 *
 * @return The location.
 *
 * @see #setDomainAxisLocation(int, AxisLocation)
 */
public AxisLocation getDomainAxisLocation(int index) {
    AxisLocation result = this.domainAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getDomainAxisLocation(0));
    }
    return result;
}
 
Example 20
Source File: XYPlot.java    From openstock with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Returns the location for a range axis.  If this hasn't been set
 * explicitly, the method returns the location that is opposite to the
 * primary range axis location.
 *
 * @param index  the axis index (must be >= 0).
 *
 * @return The location (never {@code null}).
 *
 * @see #setRangeAxisLocation(int, AxisLocation)
 */
public AxisLocation getRangeAxisLocation(int index) {
    AxisLocation result = this.rangeAxisLocations.get(index);
    if (result == null) {
        result = AxisLocation.getOpposite(getRangeAxisLocation());
    }
    return result;
}