| de.progra.charting.model.ChartDataModelConstraints
All known Subclasses: de.progra.charting.model.DefaultChartDataModelConstraints, de.progra.charting.model.StackedChartDataModelConstraints,
ChartDataModelConstraints | public interface ChartDataModelConstraints (Code) | | This interface is used by the rendering algorithm for a coordinate system.
It defines the range of values.
author: mueller version: 1.0 |
getMaximumColumnValue | public double getMaximumColumnValue()(Code) | | Returns the maximum column value.
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. |
getMaximumValue | public Number getMaximumValue()(Code) | | Returns the maximum value of all datasets.
a Number object defining the maximum value |
getMinimumColumnValue | public double getMinimumColumnValue()(Code) | | Returns the minimum column value.
In the case of non-numeric x-values this should be 0, in the caseof numeric x-values this should nomen est omen be the smallestvalue. |
getMinimumValue | public Number getMinimumValue()(Code) | | Returns the minimum value of all datasets.
a Number object defining the smallest value. |
|
|