Package com.positive.charts.axis

Examples of com.positive.charts.axis.AxisLocation


   *            the axis index.
   *
   * @return The location (never <code>null</code>).
   */
  public AxisLocation getRangeAxisLocation(final int index) {
    AxisLocation result = null;
    if (index < this.rangeAxisLocations.size()) {
      result = (AxisLocation) this.rangeAxisLocations.get(index);
    }
    if (result == null) {
      result = this.getRangeAxisLocation().opposite();
View Full Code Here


   *
   * @return The edge (never <code>null</code>).
   */
  public RectangleEdge getDomainAxisEdge(final int index) {
    RectangleEdge result = null;
    final AxisLocation location = this.getDomainAxisLocation(index);
    if (location != null) {
      result = Plot.resolveDomainAxisLocation(location, this.orientation);
    } else {
      result = RectangleEdge.opposite(this.getDomainAxisEdge(0));
    }
View Full Code Here

   *            the axis index.
   *
   * @return The location.
   */
  public AxisLocation getDomainAxisLocation(final int index) {
    AxisLocation result = null;
    if (index < this.domainAxisLocations.size()) {
      result = (AxisLocation) this.domainAxisLocations.get(index);
    }
    if (result == null) {
      result = AxisLocation.getOpposite(this.getDomainAxisLocation(0));
View Full Code Here

   *            the axis index.
   *
   * @return The edge.
   */
  public RectangleEdge getRangeAxisEdge(final int index) {
    final AxisLocation location = this.getRangeAxisLocation(index);
    RectangleEdge result = Plot.resolveRangeAxisLocation(location,
        this.orientation);
    if (result == null) {
      result = RectangleEdge.opposite(this.getRangeAxisEdge(0));
    }
View Full Code Here

   *            the axis index.
   *
   * @return The location.
   */
  public AxisLocation getRangeAxisLocation(final int index) {
    AxisLocation result = null;
    if (index < this.rangeAxisLocations.size()) {
      result = (AxisLocation) this.rangeAxisLocations.get(index);
    }
    if (result == null) {
      result = AxisLocation.getOpposite(this.getRangeAxisLocation(0));
View Full Code Here

   *            the axis index.
   *
   * @return The edge.
   */
  public RectangleEdge getDomainAxisEdge(final int index) {
    final AxisLocation location = this.getDomainAxisLocation(index);
    RectangleEdge result = Plot.resolveDomainAxisLocation(location,
        this.orientation);
    if (result == null) {
      result = this.getDomainAxisEdge().opposite();
    }
View Full Code Here

   *            the axis index.
   *
   * @return The location (never <code>null</code>).
   */
  public AxisLocation getDomainAxisLocation(final int index) {
    AxisLocation result = null;
    if (index < this.domainAxisLocations.size()) {
      result = (AxisLocation) this.domainAxisLocations.get(index);
    }
    if (result == null) {
      result = this.getDomainAxisLocation().opposite();
View Full Code Here

   *            the axis index.
   *
   * @return The edge.
   */
  public RectangleEdge getRangeAxisEdge(final int index) {
    final AxisLocation location = this.getRangeAxisLocation(index);
    RectangleEdge result = Plot.resolveRangeAxisLocation(location,
        this.orientation);
    if (result == null) {
      result = this.getRangeAxisEdge().opposite();
    }
View Full Code Here

TOP

Related Classes of com.positive.charts.axis.AxisLocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.