Package com.positive.charts.axis

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


      final double upperPercent, 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.zoomRange(lowerPercent, upperPercent);
      }
    }
  }

  /**
 
View Full Code Here


      final double upperPercent, 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.zoomRange(lowerPercent, upperPercent);
      }
    }
  }

  /**
 
View Full Code Here

      final double upperPercent, 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.zoomRange(lowerPercent, upperPercent);
      }
    }
  }

  /**
 
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.