#include <FXSPC.h>
Inheritance diagram for FXSPC:
Public Member Functions | |
FXSPC (FXComposite *parent, const FXString &title) | |
Creates a control chart. | |
void | drawSelf (FXDC *dc, FXint rootx, FXint rooty) |
Draw this plot in the device context dc. | |
void | setData (FXCurveData *y, double mean, double lower, double upper, double lowerSpec, double upperSpec) |
Changes the current curve of the chart. | |
virtual | ~FXSPC () |
Destructor. | |
Protected Attributes | |
double | upper [2] |
The upper control limit curve. | |
double | lower [2] |
The lower control limit curve. | |
double | upperSpec [2] |
The upper specification limit curve. | |
double | lowerSpec [2] |
The lower specification limit curve. | |
double | limitsx [2] |
Limits x. | |
double | mean [2] |
The mean curve. | |
FXSPCCurve * | spccurve |
The spc curve. |
The user should only create an instance of FXSPC with a given y. This class automatically creates a FXECPCurve for it.
Definition at line 70 of file FXSPC.h.
|
Creates a control chart. Given the title, curve data y, the data length and the delta. |