Uses of Class
com.quinncurtis.chart2djava.AutoScale

Packages that use AutoScale
com.quinncurtis.chart2djava   
com.quinncurtis.spcchartjava   
 

Uses of AutoScale in com.quinncurtis.chart2djava
 

Subclasses of AutoScale in com.quinncurtis.chart2djava
 class LinearAutoScale
          The LinearAutoScale class is designed to be used with linear coordinates and is used to scale the plotting area of graphs and to set the minimum and maximum values of the axes displayed in the graphs.
 class LogAutoScale
          The LogAutoScale class is designed to be used with logarithmic coordinates and is used to scale the plotting area of graphs and to set the minimum and maximum values of the axes displayed in the graphs.
 class TimeAutoScale
          The TimeAutoScale is designed for use with time coordinates and is used to scale the plotting area of graphs and to set the minimum and maximum values of the axes displayed in the graphs.
 

Methods in com.quinncurtis.chart2djava that return AutoScale
 AutoScale TimeScale.getCompatibleAutoScale()
          This method returns an AutoScale object that is compatible with this TimeScale object, an TimeAutoScale object.
 AutoScale LogScale.getCompatibleAutoScale()
          This method returns an AutoScale object that is compatible with this LogScale object, an LogAutoScale object.
 AutoScale LinearScale.getCompatibleAutoScale()
          This method returns an AutoScale object that is compatible with this LinearScale object, an LinearAutoScale object.
abstract  AutoScale ChartScale.getCompatibleAutoScale()
          An abstract methods that has the function of returning an auto-scale object compatible with the current scale object.
 

Methods in com.quinncurtis.chart2djava with parameters of type AutoScale
 void AutoScale.copy(AutoScale source)
          Copies the source AutoScale object.
 

Uses of AutoScale in com.quinncurtis.spcchartjava
 

Subclasses of AutoScale in com.quinncurtis.spcchartjava
 class ProbabilityAutoScale
          The ProbabilityAutoScale class is designed to be used with cumulative normal probability coordinates and is used to auto-scale the plotting area of graphs and to set the minimum and maximum values of the axes displayed in the graphs.
 

Methods in com.quinncurtis.spcchartjava that return AutoScale
 AutoScale ProbabilityScale.getCompatibleAutoScale()
          This method returns an AutoScale object that is compatible with this ProbabilityScale object, an ProbabilityAutoScale object.