| Name | Type | Default | Access |
|---|---|---|---|
| XmNdrawFrame | Boolean | True | CSG |
| XmNpropagate | Boolean | False | CSG |
| XmNxAutoRangeMode | int | XintROUND_MIN_MAX | CSG |
| XmNxAxisPlacement | int | XintPLACEMENT_BOTTOM | CSG |
| XmNxIncrements | XintIncrements * | NULL | CSG |
| XmNxInsidePlacement | float * | NULL | CSG |
| XmNxLimits | XintLimits * | NULL | CSG |
| XmNyAutoRangeMode | int | XintROUND_MIN_MAX | CSG |
| XmNyAxisPlacement | int | XintPLACEMENT_LEFT | CSG |
| XmNyIncrements | XintIncrements * | NULL | CSG |
| XmNyInsidePlacement | float * | NULL | CSG |
| XmNyLimits | XintLimits * | NULL | CSG |
| Constant | Description |
|---|---|
| XintROUND_MIN_MAX (default) | Axis end values are obtained by rounding off min and max data values to multiples of the major increment. |
| XintUSE_MIN_MAX | Axis end values are set to the min and max data values. |
| Resource Value | Description |
|---|---|
| XintPLACEMENT_TOP | Axis is placed at the top of the plot area. |
| XintPLACEMENT_BOTTOM (default) | Axis is placed at the bottom of the plot area. |
| XintPLACEMENT_NONE | No axis is displayed. |
| XintPLACEMENT_TOP_BOTTOM | Axis is placed both at the top and bottom of the plot area. |
| XintPLACEMENT_INSIDE | Axis is placed inside the plot area at Y location specified by resource XmNxInsidePlacement |
These resources are specified as a pointer to a data structure of type XintIncrements which takes the following form:
typedef struct {
float major_increment;
float minor_increment;
} XintIncrements;
These resources are specified as a pointer to a data structure of type XintLimits which takes the following form:
typedef struct {
float minimum;
float maximum;
} XintLimits;
| Constant | Description |
|---|---|
| XintROUND_MIN_MAX (default) | Axis end values are obtained by rounding off min and max data values to multiples of the major increment. |
| XintUSE_MIN_MAX | Axis end values are set to the min and max data values. |
| Constant | Description |
|---|---|
| XintPLACEMENT_LEFT (default) | Axis is placed to the left of the plot area. |
| XintPLACEMENT_RIGHT | Axis is placed to the right of the plot area. |
| XintPLACEMENT_NONE | No axis is displayed. |
| XintPLACEMENT_LEFT_RIGHT | Axis is placed both left and right of the plot area. |
| XintPLACEMENT_INSIDE | Axis is placed inside the plot area at X location specified by resource XmNyInsidePlacement. |
| Name | Type | Default | Access |
|---|---|---|---|
| XmNcolor | Pixel | foreground | CSG |
| XmNdashList | char * | NULL | CSG |
| XmNfillColor | Pixel | "gray" | CSG |
| XmNfillFilename | char * | NULL | CSG |
| XmNfillPixmap | Pixmap | NULL | CSG |
| XmNfillStyle | int | XintFILL_SOLID | CSG |
| XmNfont | char * | "*Helvetica*-120-*" | CSG |
| XmNhighlightMode | int | XintHIGHLIGHT_HANDLE | CSG |
| XmNlineStyle | int | XintLINE_NONE | CSG |
| XmNlineThickness | int | 1 | CSG |
| XmNmove | Boolean | True | CSG |
| XmNsensitive | Boolean | True | CSG |
| XmNshape | Boolean | True | CSG |
| XmNstippleColor | Pixel | foreground | CSG |
| Function Name | Description |
|---|---|
| XintPlotInsertObject | Allows insertion of objects into a plot without the need for an expose. |
void XintPlotInsertObject (...)
| Object | chart or plot ID | Chart or Plot ID. |
| Object | child | Name of the child object to be inserted. |