|
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.SpcChart
public abstract class SpcChart
Provides access to the SpcChart object
A Statistical Process Control (SPC) or control chart provides basis for deciding whether the variation in the output is due to common causes (in control) or assignable causes (out of control). Whenever an out-of-control situation is detected, adjustments and/or other corrective action will be taken to bring the process back into control.
Constructor Summary | |
---|---|
SpcChart()
|
Method Summary | |
---|---|
double |
getLcl()
Gets the value for the Lower Control Limit for an SPC chart. |
StudyConstant |
getLclStudy()
Provides access to the LclStudy object for customization. |
double |
getMean()
Gets the Mean. |
StudyConstant |
getMeanStudy()
Provides access to the Mean study object for customization. |
double |
getSigma()
Gets the Sigma. |
double |
getUcl()
Gets the value for the Upper Control Limit for an SPC chart. |
StudyConstant |
getUclStudy()
Provides access to the UclStudy object for customization. |
boolean |
isShowLimits()
Gets the ShowLimits. |
void |
setMean(double value)
Sets the Mean value for an SPC Chart. |
void |
setShowLimits(boolean value)
Sets the boolean to show limits. |
void |
setSigma(double value)
Sets the Sigma value for an SPC Chart. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SpcChart()
Method Detail |
---|
public double getLcl()
Gets the value for the Lower Control Limit for an SPC chart.
The lower control limit (Lcl) is calculated by Chart FX when you select an SPC Gallery, or add the SPC Study Group.
Once developers have found good control limits for data within there charts, they may Statistics.setFreeze(boolean)
or Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
these values using the respective properties. If you save the state, you can Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
it for later use.
You may read the Upper Control Limit (Ucl) using the Ucl property. The setMean(double)
and setSigma(double)
values are also available using the repective properties.
Statistics.setFreeze(boolean)
,
setMean(double)
,
setSigma(double)
,
Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
,
Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
public StudyConstant getLclStudy()
Provides access to the LclStudy object for customization.
The correct gallery must be applied and the study must be added before customization is possible.
public double getMean()
Gets the Mean. For more detail see setMean(double)
.
public StudyConstant getMeanStudy()
Provides access to the Mean study object for customization.
The correct gallery must be applied and the study must be added before customization is possible.
public double getSigma()
Gets the Sigma. For more detail see setSigma(double)
.
public double getUcl()
Gets the value for the Upper Control Limit for an SPC chart.
The upper control limit (Ucl) is calculated by Chart FX when you select an SPC Gallery, or add the SPC Study Group.
Once developers have found good control limits for data within there charts, they may Statistics.setFreeze(boolean)
or Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
these values using the respective properties. If you save the state, you can Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
it for later use.
You may read the Lower Control Limit (Ucl) using the Lcl property. The setMean(double)
and setSigma(double)
values are also available using the repective properties.
Statistics.setFreeze(boolean)
,
setMean(double)
,
setSigma(double)
,
Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
,
Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
public StudyConstant getUclStudy()
Provides access to the UclStudy object for customization.
The correct gallery must be applied and the study must be added before customization is possible.
public boolean isShowLimits()
Gets the ShowLimits. For more detail see setShowLimits(boolean)
.
public void setMean(double value)
Sets the Mean value for an SPC Chart.
The Mean is calculated automatically by Chart FX when you select an SPC Gallery, or add the SPC Study Group. You can get or set the value using this property.
Once developers have found good control limits for data within there charts, they may Statistics.setFreeze(boolean)
or Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
these values using the respective properties. If you save the state, you can Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
it for later use.
You may read the Upper and Lower Control Limits using the getUcl()
and getLcl()
properties. The setSigma(double)
value is also available using the repective property. setSigma(double)
is automatically calculated when you pass data to an SPC Chart, however, using the Sigma API property, you can configure a desired value. However, if you would like Chart FX to calcualte Sigma again, you can set the value equal to double.NaN.
Statistics.setFreeze(boolean)
,
getUcl()
,
getLcl()
,
setSigma(double)
,
Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
,
Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
public void setShowLimits(boolean value)
Sets the boolean to show limits.
An SPC Gallery type must be selected or an SPC study must be added in order to reference the related SPC properties.
public void setSigma(double value)
Sets the Sigma value for an SPC Chart.
The Sigma is calculated automatically by Chart FX when you select an SPC Gallery, or add the SPC Study Group. You can get or set the value using this property.
Once developers have found good control limits for data within there charts, they may Statistics.setFreeze(boolean)
or Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
these values using the respective properties. If you save the state, you can Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
it for later use.
You may read the Upper and Lower Control Limits using the getUcl()
and getLcl()
properties. The setMean(double)
value is also available using the repective property. setMean(double)
is automatically calculated when you pass data to an SPC Chart, however, using the Mean API property, you can configure a desired value. However, if you would like Chart FX to calcualte the Mean again, you can set the value equal to double.NaN.
Statistics.setFreeze(boolean)
,
getUcl()
,
getLcl()
,
setMean(double)
,
Statistics.loadState(com.softwarefx.sfxnet.System.IO.Stream)
,
Statistics.saveState(com.softwarefx.sfxnet.System.IO.Stream)
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |