EspressReport
v 5.5

quadbase.ChartAPI
Class AxisScale

java.lang.Object
  |
  +--quadbase.ChartAPI.AxisScale

public class AxisScale
extends java.lang.Object

AxisScale

This class contains information to set and retrieve current axis scale information. They are :
min - minimum value for the axis scale
max - maximum value for the axis scale
step - step size for axis scale

Note : This class has been deprecated. See the QbChart.gethXAxis() methods and quadbase.util.IAxis interface for alternatives.

Version:
1.0

Date : 5-20-97


Constructor Summary
AxisScale(double min, double max, double step)
          Deprecated. Create an AxisScale object
 
Method Summary
 double getMax()
          Deprecated. Get the maximum axis value
 double getMin()
          Deprecated. Get the minimum axis value
 double getStepsize()
          Deprecated. Get the step size
 void setMax(double max)
          Deprecated. Set the maximum axis value
 void setMin(double min)
          Deprecated. Set the minimum axis value
 void setStepsize(double stepsize)
          Deprecated. Set the step size of axis
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AxisScale

public AxisScale(double min,
                 double max,
                 double step)
Deprecated. 
Create an AxisScale object
Parameters:
min - - minimum axis value
max - - maximum axis value
step - - step size for grid
Method Detail

getMin

public double getMin()
Deprecated. 
Get the minimum axis value

getMax

public double getMax()
Deprecated. 
Get the maximum axis value

getStepsize

public double getStepsize()
Deprecated. 
Get the step size

setMin

public void setMin(double min)
Deprecated. 
Set the minimum axis value
Parameters:
min - new minimum axis value

setMax

public void setMax(double max)
Deprecated. 
Set the maximum axis value
Parameters:
max - new maximum axis value

setStepsize

public void setStepsize(double stepsize)
Deprecated. 
Set the step size of axis
Parameters:
stepsize - new step size of axis

EspressReport
v 5.5