/*
 * ENUM: SE_AXIS_ALIGNMENT_ENUM
 *
 *   Used to indicates the position of a <Regular Axis> with respect to the
 *   axis interval. Note that LOWER and UPPER refer to the <Regular Axis>
 *   INDEX; e.g., LOWER means aligned to the side with the lower index.
 */
typedef enum
{
SE_NOT_ALIGNED, (notes)
SE_ALIGN_LOWER, (notes)
SE_ALIGN_MIDDLE, (notes)
SE_ALIGN_UPPER, (notes)
SE_ALIGN_GEOMETRIC_MEAN (notes)
} SE_AXIS_ALIGNMENT_ENUM;


Enumerator Notes

SE_NOT_ALIGNED

 Tic mark is representative of all points in the interval.

SE_ALIGN_LOWER

 Left or lower interval value.

SE_ALIGN_MIDDLE

 Middle or center of interval value.

SE_ALIGN_UPPER

 Right or upper interval value.

SE_ALIGN_GEOMETRIC_MEAN

 Perhaps for logarithmic and irregular axes.
Prev: SE_AXIS_ENUM. Next: SE_CAMERA_ENUM. Up:Index