:: com :: sun :: star :: chart2 ::

enum CurveStyle

Values
LINES Lines between data points are not smoothed  
CUBIC_SPLINES Data points are connected via a smoothed cubic spline curve. The data points themselves are part of to the curve.  
B_SPLINES Data points are connected via a parametric, interpolating B-spline curve.  
NURBS * Non-uniform rational b-splines  
STEP_START Data points are connected via a 2-segmented stepped line. The line starts horizontally. \verbatim O | | | O-----+ \endverbatim  
STEP_END Data points are connected via a 2-segmented stepped line. The line ends horizontally. \verbatim +------O | | | O \endverbatim  
STEP_CENTER_X Data points are connected via a 3-segmented stepped line. The lines is horizontal till the center of the X values. \verbatim +--O | | | O--+ \endverbatim  
STEP_CENTER_Y Data points are connected via a 3-segmented stepped line. The lines is horizontal at the center of the Y values. \verbatim O | +-----+ | O \endverbatim  
Values' Details
LINES
LINES,
Description
Lines between data points are not smoothed
CUBIC_SPLINES
CUBIC_SPLINES,
Description
Data points are connected via a smoothed cubic spline curve. The data points themselves are part of to the curve.
B_SPLINES
B_SPLINES,
Description
Data points are connected via a parametric, interpolating B-spline curve.
NURBS
NURBS,
Description
* Non-uniform rational b-splines
STEP_START
STEP_START,
Description
Data points are connected via a 2-segmented stepped line. The line starts horizontally. \verbatim O | | | O-----+ \endverbatim
STEP_END
STEP_END,
Description
Data points are connected via a 2-segmented stepped line. The line ends horizontally. \verbatim +------O | | | O \endverbatim
STEP_CENTER_X
STEP_CENTER_X,
Description
Data points are connected via a 3-segmented stepped line. The lines is horizontal till the center of the X values. \verbatim +--O | | | O--+ \endverbatim
STEP_CENTER_Y
STEP_CENTER_Y,
Description
Data points are connected via a 3-segmented stepped line. The lines is horizontal at the center of the Y values. \verbatim O | +-----+ | O \endverbatim
Top of Page