Uses of Class
com.quinncurtis.chart2djava.ChartDimension

Packages that use ChartDimension
com.quinncurtis.chart2djava   
 

Uses of ChartDimension in com.quinncurtis.chart2djava
 

Methods in com.quinncurtis.chart2djava that return ChartDimension
 ChartDimension PhysicalCoordinates.convertDimension(int ndestpostype, ChartDimension source, int nsrcpostype)
          This method converts width and height dimensions from one coordinate system to another.
 ChartDimension ChartImage.getImageScaleFactor()
          Returns the current scale factor of the image.
 ChartDimension ChartImage.getImageSize()
          Returns the current size (width and height) of the image.
 ChartDimension ChartDimension.getSize()
          Gets the size of this ChartDimension object.
 ChartDimension UserCoordinates.getStringDimension(java.awt.Graphics2D g2, java.lang.String s)
          This method returns the bounding dimension of the specified string, rendered using the current font.
 ChartDimension ChartText.getTextDimension(java.awt.Graphics2D g2, java.lang.String s)
          Returns the height and width of the text object, taking into account multiline text.
 ChartDimension ChartZoom.getZoomRangeLimitsRatio()
          This method returns the zoom range limits ratio placed on the zoom operation.
 ChartDimension PhysicalCoordinates.normalizeRect(double w, double h, int nmode)
          This method returns the normalized width and height of a rectangle, using the specified graph area physical coordinate system range.
 ChartDimension PhysicalCoordinates.unNormalizeRect(double w, double h, int nmode)
          This method converts a rectangles normalized width and height into physical coordinates.
 

Methods in com.quinncurtis.chart2djava with parameters of type ChartDimension
 void PhysicalCoordinates.convertDimension(ChartDimension dest, int ndestpostype, ChartDimension source, int nsrcpostype)
          This method converts width and height dimensions from one coordinate system to another.
 ChartDimension PhysicalCoordinates.convertDimension(int ndestpostype, ChartDimension source, int nsrcpostype)
          This method converts width and height dimensions from one coordinate system to another.
 void ChartDimension.copy(ChartDimension source)
          Copies the source object.
 void ChartImage.setImageScaleFactor(ChartDimension psize)
          Sets the current scale factor of the image.
 void ChartImage.setImageSize(ChartDimension wh)
          Sets the current size (width and height) of the image.
 void ChartDimension.setSize(ChartDimension d)
          Set the size of this ChartDimension object to the specified size.
 void ChartZoom.setZoomRangeLimits(ChartDimension limits)
          This method sets the zoom range limits placed on the zoom operation.
 void ChartZoom.setZoomRangeLimitsRatio(ChartDimension ratio)
          This method sets the zoom range limits placed on the zoom operation.
 void PhysicalCoordinates.unNormalizeRect(ChartDimension dest, double w, double h, int nmode)
          This method converts a rectangles normalized width and height into physical coordinates.
 

Constructors in com.quinncurtis.chart2djava with parameters of type ChartDimension
ChartDimension(ChartDimension d)
          Creates an instance of ChartDimension whose width and height are the same as for the specified dimension.