Chart FX 7 for Java Server

com.softwarefx.chartfx.server.statistical
Class IntervalChart

java.lang.Object
  extended by com.softwarefx.chartfx.server.statistical.IntervalChart
All Implemented Interfaces:
IExtension, IGallery
Direct Known Subclasses:
IntervalChartWithNormal, Ogive

public abstract class IntervalChart
extends Object
implements IExtension, IGallery

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

IntervalChart

public IntervalChart()
Method Detail

getAxisX

public AxisX getAxisX()

Error: Member IntervalChart.AxisX member not found

ERROR: Doc member not found


getDataMax

public double getDataMax()

Gets the DataMax. For more detail see setDataMax(double).


getDataMin

public double getDataMin()

Gets the DataMin. For more detail see setDataMin(double).


getIntervals

public int getIntervals()

Gets the Intervals. For more detail see setIntervals(int).


setDataMax

public void setDataMax(double value)

Sets the maximum range value used for a Histogram chart.

Remarks:
  • 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

  • See Also:
    setIntervals(int), setDataMin(double)

    setDataMin

    public void setDataMin(double value)

    Sets the minimum range value used for a Histogram chart.

    Remarks:
  • 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

  • See Also:
    setDataMax(double), setIntervals(int)

    setIntervals

    public void setIntervals(int value)

    Sets the number of intervals that will be used to plot the IntervalChart.

    Remarks:
  • 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.

  • See Also:
    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

    2008 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
    All other names are trademarks or registered trademarks of their respective owners.