|  |  |  | GtkDatabox Reference Manual |  | 
|---|---|---|---|---|
| GtkDataboxXYCGraphGtkDataboxXYCGraph — An abstract anchestor for all graphs which display xy-values in one color. | 
#include <gtkdatabox_xyc_graph.h>
                    GtkDataboxXYCGraphPrivate;
                    GtkDataboxXYCGraph;
guint               gtk_databox_xyc_graph_get_length    (GtkDataboxXYCGraph *xyc_graph);
gfloat*             gtk_databox_xyc_graph_get_X         (GtkDataboxXYCGraph *xyc_graph);
gfloat*             gtk_databox_xyc_graph_get_Y         (GtkDataboxXYCGraph *xyc_graph);
GObject +----GtkDataboxGraph +----GtkDataboxXYCGraph +----GtkDataboxPoints +----GtkDataboxLines +----GtkDataboxBars +----GtkDataboxMarkers
"X-Values" gpointer : Read / Write / Construct Only "Y-Values" gpointer : Read / Write / Construct Only "length" gint : Read / Write / Construct Only
GtkDataboxXYCGraphs are an abstract class for displaying XY-data in one color. The values for the data are represented as an array of X values and a second array of Y values. In order to actually display data, you should use one of the derived classes.
typedef struct _GtkDataboxXYCGraphPrivate GtkDataboxXYCGraphPrivate;
A private data structure used by the GtkDataboxXYCGraph. It shields all internal things from developers who are just using the object.
typedef struct _GtkDataboxXYCGraph GtkDataboxXYCGraph;
GtkDataboxXYCGraphs are an abstract class for displaying XY-data in one color. The values for the data are represented as an array of X values and a second array of Y values. In order to actually display data, you should use one of the derived classes.
guint gtk_databox_xyc_graph_get_length (GtkDataboxXYCGraph *xyc_graph);
Gets the the length of the X and Y values arrays.
| 
 | A GtkDataboxXYCGraph object | 
| Returns : | Length of X/Y arrays. | 
gfloat* gtk_databox_xyc_graph_get_X (GtkDataboxXYCGraph *xyc_graph);
Gets the X values of the xzc_graph.
| 
 | A GtkDataboxXYCGraph object | 
| Returns : | Pointer to X values | 
gfloat* gtk_databox_xyc_graph_get_Y (GtkDataboxXYCGraph *xyc_graph);
Gets the Y values of the xzc_graph.
| 
 | A GtkDataboxXYCGraph object | 
| Returns : | Pointer to Y values |