Uses of Class
com.quinncurtis.chart2djava.ChartScale

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

Uses of ChartScale in com.quinncurtis.chart2djava
 

Subclasses of ChartScale in com.quinncurtis.chart2djava
 class LinearScale
          The LinearScale class implements a linear coordinate system for a single coordinate, x or y.
 class LogScale
          The LogScale class implements a logarithmic coordinate system for a single coordinate, x or y.
 class TimeScale
          The TimeScale class implements a time based coordinate system for a single coordinate, x or y.
 

Methods in com.quinncurtis.chart2djava that return ChartScale
 ChartScale PhysicalCoordinates.getXScale()
          This method returns the xScale scaling object, the ChartScale object used to transform x-values to/from physical to working coordinates.
 ChartScale PhysicalCoordinates.getYScale()
          This method returns the yScale scaling object, the ChartScale object used to transform y-values to/from physical to working coordinates.
 

Methods in com.quinncurtis.chart2djava with parameters of type ChartScale
 void ChartScale.copy(ChartScale source)
          Copies the source scale object.
 void PhysicalCoordinates.setPhysScales(ChartScale xscale, ChartScale yscale)
          This method initializes an PhysicalCoordinates object, specifying the ChartScale objects used to transform x- and y-values to/from physical to working coordinates.
 void PhysicalCoordinates.setXScale(ChartScale xscale)
          This method initializes the xScale scaling object, specifying the ChartScale object used to transform x-values to/from physical to working coordinates.
 void PhysicalCoordinates.setYScale(ChartScale yscale)
          This method initializes the yScale scaling object, specifying the ChartScale object used to transform y-values to/from physical to working coordinates.
 

Constructors in com.quinncurtis.chart2djava with parameters of type ChartScale
PhysicalCoordinates(ChartScale xscale, ChartScale yscale)
          This constructor creates a new PhysicalCoordinates object, specifying the ChartScale objects used to transform x- and y-values to/from physical to working coordinates.
 

Uses of ChartScale in com.quinncurtis.spcchartjava
 

Subclasses of ChartScale in com.quinncurtis.spcchartjava
 class ProbabilityScale
          The ProbabilityScale class implements a cumulative normal probability coordinate system for a single coordinate, x or y.