com.approximatrix.charting.model
Interface ChartDataModelConstraints

All Known Implementing Classes:
DefaultChartDataModelConstraints, DotPlotDataModelConstraints, MultiScatterDataModelConstraints, StackedChartDataModelConstraints

public interface ChartDataModelConstraints

This interface is used by the rendering algorithm for a coordinate system. It defines the range of values.

Author:
mueller armstrong

Method Summary
 double getMaximumColumnValue()
          Deprecated. As of release 1.3, replaced by getMaximumX()
 java.lang.Number getMaximumValue()
          Deprecated. As of release 1.3, replaced by getMaximumY()
 java.lang.Number getMaximumX()
          Returns the maximum column value.
 java.lang.Number getMaximumY()
          Returns the maximum value of all datasets.
 double getMinimumColumnValue()
          Deprecated. As of release 1.3, replaced by getMinimumX()
 java.lang.Number getMinimumValue()
          Deprecated. As of release 1.3, replaced by getMinimumY()
 java.lang.Number getMinimumX()
          Returns the minimum column value.
 java.lang.Number getMinimumY()
          Returns the minimum value of all datasets.
 

Method Detail

getMinimumValue

java.lang.Number getMinimumValue()
Deprecated. As of release 1.3, replaced by getMinimumY()

Returns the minimum value of all datasets.

Returns:
a Number object defining the smallest value.

getMaximumValue

java.lang.Number getMaximumValue()
Deprecated. As of release 1.3, replaced by getMaximumY()

Returns the maximum value of all datasets.

Returns:
a Number object defining the maximum value

getMinimumColumnValue

double getMinimumColumnValue()
Deprecated. As of release 1.3, replaced by getMinimumX()

Returns the minimum column value.

Returns:
In the case of non-numeric x-values this should be 0, in the case of numeric x-values this should nomen est omen be the smallest value.

getMaximumColumnValue

double getMaximumColumnValue()
Deprecated. As of release 1.3, replaced by getMaximumX()

Returns the maximum column value.

Returns:
In the case of non-numeric x-values this should be the amount of columns - 1, in the case of numeric x-values this should nomen est omen be the smallest value.

getMinimumY

java.lang.Number getMinimumY()
Returns the minimum value of all datasets.

Returns:
a Number object defining the smallest value.

getMaximumY

java.lang.Number getMaximumY()
Returns the maximum value of all datasets.

Returns:
a Number object defining the maximum value

getMinimumX

java.lang.Number getMinimumX()
Returns the minimum column value.

Returns:
In the case of non-numeric x-values this should be 0, in the case of numeric x-values this should nomen est omen be the smallest value.

getMaximumX

java.lang.Number getMaximumX()
Returns the maximum column value.

Returns:
In the case of non-numeric x-values this should be the amount of columns - 1, in the case of numeric x-values this should nomen est omen be the smallest value.