The ComboPlot object class does not define any new resources.
| 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 |
|---|---|
| XintComboPlotCreateNewPlot | Creates a new plot type inside the combo plot. |
| XintComboPlotGetComponent | Retrieves a component from a combo plot. |
Object XintComboPlotCreateNewPlot (...)
| Object | combo_plot | ID of the ComboPlot object. |
| int | plot_type | Type of plot to create. |
The argument plot_type can be one of the following constants:
| Constant | Description |
|---|---|
| XintPLOT_TYPE_BAR | To create a BarLine plot. |
| XintPLOT_TYPE_PIE | To create a Pie plot. |
| XintPLOT_TYPE_SURFACE_3D | To create a Surface3D plot. |
| XintPLOT_TYPE_HIGH_LOW | To create a HighLow plot. |
| XintPLOT_TYPE_HISTOGRAM | To create a Histogram plot. |
| XintPLOT_TYPE_AREA | To create a XYPlot configured as an area plot. |
| XintPLOT_TYPE_LINE | To create a XYPlot configured as a line plot. |
| XintPLOT_TYPE_SCATTERED | To create a XYPlot configured as a scattered plot. |
| XintPLOT_TYPE_BAR_3D | To create a Bar3D plot. |
Object XintComboPlotGetComponent (...)
| Object | combo_plot | ID of the ComboPlot object. |
| int | code | Code for the component to return. |
| int | index | The index of the plot of interest (starts at 0). |
The argument code can be one of the following constants:
| Constant | Description |
|---|---|
| XintCHART_COMPONENT_PLOT | The code for the plot object. |
| XintCHART_COMPONENT_VERTICAL_AXIS | The code for the vertical axis object. |
| XintCHART_COMPONENT_HORIZONTAL_AXIS | The code for the horizontal axis object. |
The function returns NULL if argument index is out of range.
Boolean XintIsComboPlot (Object object)