public interface IHistogramInfo
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getLowerBound()
Get the lower bound for the histogram.
|
java.lang.Number |
getScale()
Get the scale value used to do the rounding operation in the histogram.
|
java.lang.Object |
getUpperBound()
Get the upper bound for the histogram.
|
boolean |
isHistogram()
This function is used to find out if the current chart is a histogram or not.
|
boolean |
isLinearScale()
This function is used to determine if a linear scale has been plotted in the histogram.
|
boolean |
isRounded()
Are the values rounded off prior to plotting in the histogram.
|
void |
setHistogram(boolean histState)
This function is used to set/unset the histogram option in a chart.
|
void |
setLinearScale(boolean isLinear)
State whether or not to use a linear scale in the histogram.
|
void |
setLowerBound(java.lang.Object lowerBound)
Set the lower bound for the histogram.
|
void |
setRounded(boolean isRounded)
State whether or not to round values before plotting the histogram.
|
void |
setScale(java.lang.Number value)
Set the scale value to use in the rounding operation.
|
void |
setUpperBound(java.lang.Object upperBound)
Set the upper bound for the histogram.
|
boolean isHistogram()
void setHistogram(boolean histState)
histState
- Set it to true if a histogram plot is required.boolean isLinearScale()
void setLinearScale(boolean isLinear)
isLinear
- Set it to true if a linear scale is desired.setRounded(boolean)
java.lang.Object getLowerBound()
The object returned can have the following type:
Integer, Short, Long, Float, Double, String
void setLowerBound(java.lang.Object lowerBound)
lowerBound
- The lower bound desired in the plot.getLowerBound()
java.lang.Object getUpperBound()
getLowerBound()
void setUpperBound(java.lang.Object upperBound)
upperBound
- The upper bound desired in the plot.setLowerBound(java.lang.Object)
boolean isRounded()
void setRounded(boolean isRounded)
isRounded
- Set to true if rounding is desired, false otherwise.java.lang.Number getScale()
void setScale(java.lang.Number value)
value
- The number to use while rounding off values in the histogram.setRounded(boolean)