Package com.positive.charts.axis

Examples of com.positive.charts.axis.ValueAxis.resizeRange()


  public void zoomDomainAxes(final double factor,
      final PlotRenderingInfo info, final Point source) {
    for (int i = 0; i < this.domainAxes.size(); i++) {
      final ValueAxis domainAxis = (ValueAxis) this.domainAxes.get(i);
      if (domainAxis != null) {
        domainAxis.resizeRange(factor);
      }
    }
  }

  /**
 
View Full Code Here


  public void zoomRangeAxes(final double factor,
      final PlotRenderingInfo info, final Point source) {
    for (int i = 0; i < this.rangeAxes.size(); i++) {
      final ValueAxis rangeAxis = (ValueAxis) this.rangeAxes.get(i);
      if (rangeAxis != null) {
        rangeAxis.resizeRange(factor);
      }
    }
  }

}
View Full Code Here

  public void zoomRangeAxes(final double factor,
      final PlotRenderingInfo state, final Point source) {
    for (int i = 0; i < this.rangeAxes.size(); i++) {
      final ValueAxis rangeAxis = (ValueAxis) this.rangeAxes.get(i);
      if (rangeAxis != null) {
        rangeAxis.resizeRange(factor);
      }
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.