|
Chart FX 7 for Java Server | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.softwarefx.chartfx.server.statistical.IntervalChart
public abstract class IntervalChart
Provides access to the IntervalChart object
The IntervalChart class supports the creation and customization of chart interval markers. These markers can help the user to quickly determine the distribution of plotted values in a chart. Some of the other classes derive from this IntervalChart class, including the Histogram, FrequencyPolygon and Ogive gallery classes.
Constructor Summary | |
---|---|
IntervalChart()
|
Method Summary | |
---|---|
AxisX |
getAxisX()
Error: Member IntervalChart.AxisX member not found |
double |
getDataMax()
Gets the DataMax. |
double |
getDataMin()
Gets the DataMin. |
int |
getIntervals()
Gets the Intervals. |
void |
setDataMax(double value)
Sets the maximum range value used for a Histogram chart. |
void |
setDataMin(double value)
Sets the minimum range value used for a Histogram chart. |
void |
setIntervals(int value)
Sets the number of intervals that will be used to plot the IntervalChart. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public IntervalChart()
Method Detail |
---|
public AxisX getAxisX()
Error: Member IntervalChart.AxisX member not found
ERROR: Doc member not found
public double getDataMax()
Gets the DataMax. For more detail see setDataMax(double)
.
public double getDataMin()
Gets the DataMin. For more detail see setDataMin(double)
.
public int getIntervals()
Gets the Intervals. For more detail see setIntervals(int)
.
public void setDataMax(double value)
Sets the maximum range value used for a Histogram chart.
This property is used to get or set the maximum range value for a Histogram chart. The setDataMin(double)
property is used to set the minimum range value.
The setIntervals(int)
property may be used to configure the number of "buckets" (Intervals) a histogram chart will include in the X Axis. You can determine the size of each Interval using the following:
Interval Size = (DataMax - DataMin) / Intervals
setIntervals(int)
,
setDataMin(double)
public void setDataMin(double value)
Sets the minimum range value used for a Histogram chart.
This property is used to get or set the minimum range value for a Histogram chart. The setDataMax(double)
property is used to set the maximum range value.
The setIntervals(int)
property may be used to configure the number of "buckets" (Intervals) a histogram chart will include in the X Axis. You can determine the size of each Interval using the following:
Interval Size = (DataMax - DataMin) / Intervals
setDataMax(double)
,
setIntervals(int)
public void setIntervals(int value)
Sets the number of intervals that will be used to plot the IntervalChart.
The IntervalChartWithNormal.getPercentageLeft()
and IntervalChartWithNormal.getPercentageRight()
properties can be used to read the percentage of the plot left and right of the limit markers.
The IntervalChartWithNormal.setLimitLeft(int)
property is used to get or set a value for the left limit. The IntervalChartWithNormal.setLimitRight(int)
property is used to get or set a value for the right limit.
Use the IntervalChartWithNormal.setLimitsColor(java.awt.Color)
to configure the color for the limit markers and labels.
The IntervalChartWithNormal.setShowLimits(boolean)
property is used to show or hide the interval limits in the chart.
IntervalChartWithNormal.setLimitRight(int)
,
IntervalChartWithNormal.setLimitLeft(int)
,
IntervalChartWithNormal.setLimitsColor(java.awt.Color)
,
IntervalChartWithNormal.getPercentageLeft()
,
IntervalChartWithNormal.getPercentageRight()
,
IntervalChartWithNormal.setShowLimits(boolean)
,
FrequencyPolygon
,
Ogive
,
Histogram
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |