Chart FX 7 for Java Server

com.softwarefx.chartfx.server.statistical
Class Galleries

java.lang.Object
  extended by com.softwarefx.chartfx.server.statistical.Galleries

public class Galleries
extends Object

Provides access to the Galleries object

The Chart FX for .NET Statistical Extension provides additional statistical gallery types. The supported members of this class expose the properties used to return the a selected statistical gallery object which may then be assigned to the chart's GalleryObj property. Additionally, each of the supported members may be used to access the repective class object for further attribute assignment.


Constructor Summary
Galleries()
           
 
Method Summary
 BoxPlot getBoxPlot()
          Returns a BoxPlot gallery object.
 com.softwarefx.chartfx.server.statistical.Galleries.Gallery getCurrent()
          Gets the Current.
 FrequencyPolygon getFrequencyPolygon()
          Returns a FrequencyPolygon gallery object.
 Histogram getHistogram()
          Returns a Histogram gallery object.
 NPChart getNPChart()
          Returns a NPChart gallery object.
 Ogive getOgive()
          Returns a Ogive gallery object.
 PChart getPChart()
          Returns a PChart gallery object.
 RChart getRChart()
          Returns a RChart gallery object.
 Regression getRegression()
          Returns a Regression gallery object.
 XChart getXChart()
          Returns a XChart gallery object.
 void setCurrent(com.softwarefx.chartfx.server.statistical.Galleries.Gallery value)
          Sets the current statistical gallery.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Galleries

public Galleries()
Method Detail

getBoxPlot

public BoxPlot getBoxPlot()

Returns a BoxPlot gallery object.

Remarks:
  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the BoxPlot statistical chart:

  • This property exposes a BoxPlot object, please see the BoxPlot class for the supported members allowing customization of this object.

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    Statistics.getGallery(), BoxPlot, Statistics

    getCurrent

    public com.softwarefx.chartfx.server.statistical.Galleries.Gallery getCurrent()

    Gets the Current. For more detail see setCurrent(com.softwarefx.chartfx.server.statistical.Galleries.Gallery).


    getFrequencyPolygon

    public FrequencyPolygon getFrequencyPolygon()

    Returns a FrequencyPolygon gallery object.

    Remarks:
  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the FrequencyPolygon statistical chart:

  • This property exposes an FrequencyPolygon object which may by use the FrequencyPolygon class to modify attributes. This class is derived form the IntervalChart class however, so please also see the IntervalChart class for the supported members allowing customization of this object.

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    Statistics.getGallery(), IntervalChart, FrequencyPolygon, Statistics

    getHistogram

    public Histogram getHistogram()

    Returns a Histogram gallery object.

    Remarks:
  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the Histogram statistical chart:

  • This property exposes an FrequencyPolygonHistogram object which may by use the Histogram class to modify attributes. This class is derived form the IntervalChart class however, so please also see the IntervalChart class for the supported members allowing customization of this object.

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    Statistics.getGallery(), Histogram, IntervalChart, Statistics

    getNPChart

    public NPChart getNPChart()

    Returns a NPChart gallery object.

    Remarks:
  • The NPChart is one of the Statistical Process Control (SPC) chart galleries available in the Galleries class. Others include the getPChart(), getRChart(), and getXChart().

  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the NPChart statistical chart:

    chart1.GalleryObj = statistics1.Gallery.NPChart;

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    getPChart(), getRChart(), getXChart(), Statistics.getGallery(), Statistics

    getOgive

    public Ogive getOgive()

    Returns a Ogive gallery object.

    Remarks:
  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the Ogive statistical chart:

  • This property exposes an Ogive object, however, please see the IntervalChart class for the supported members allowing customization of this object.

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    getBoxPlot(), getFrequencyPolygon(), getHistogram(), getRegression(), Statistics.getGallery(), IntervalChart, Statistics

    getPChart

    public PChart getPChart()

    Returns a PChart gallery object.

    Remarks:
  • The PChart is one of the Statistical Process Control (SPC) chart galleries available in the Galleries class. Others include the getNPChart(), getRChart(), and getXChart().

  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the PChart statistical chart:

    chart1.GalleryObj = statistics1.Gallery.PChart;

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    getNPChart(), getRChart(), getXChart(), Statistics.getGallery(), Statistics

    getRChart

    public RChart getRChart()

    Returns a RChart gallery object.

    Remarks:
  • The RChart is one of the Statistical Process Control (SPC) chart galleries available in the Galleries class. Others include the getNPChart(), getPChart(), and getXChart().

  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the RChart statistical chart:

    chart1.GalleryObj = statistics1.Gallery.RChart;

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    getNPChart(), getPChart(), getXChart(), Statistics.getGallery(), Statistics

    getRegression

    public Regression getRegression()

    Returns a Regression gallery object.

    Remarks:
  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the Regression statistical chart:

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    getBoxPlot(), getFrequencyPolygon(), getHistogram(), getOgive(), Statistics.getGallery(), Statistics

    getXChart

    public XChart getXChart()

    Returns a XChart gallery object.

    Remarks:
  • The XChart is one of the Statistical Process Control (SPC) chart galleries available in the Galleries class. Others include the getNPChart(), getPChart(), and getRChart().

  • The Statistical extension supports a number of new gallery types. In order to set one of the supported gallery types to the chart, you must set the chart's GalleryObj equal to the desired statistic gallery. The following code could be used to configure the XChart statistical chart:

    chart1.GalleryObj = statistics1.Gallery.XChart;

  • The Statistics.getGallery() property of the Statistics class allows you to access this property.

  • See Also:
    getNPChart(), getPChart(), getRChart(), Statistics.getGallery(), Statistics

    setCurrent

    public void setCurrent(com.softwarefx.chartfx.server.statistical.Galleries.Gallery value)

    Sets the current statistical gallery.

    Remarks:
  • You may configure the gallery for the chart using the chart's GalleryObj property, or using this property (Both these code snippets do the same thing):

    chart1.GalleryObj = statistics1.Gallery.Regression;

    statistics1.Gallery.Current = Galleries.Gallery.Regression;

  • This property is probably most useful to the developer when identifying which gallery is currently selected in the chart.


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