|  |  |  | GtkDatabox Reference Manual |  | 
|---|---|---|---|---|
| GtkDataboxLinesGtkDataboxLines — A GtkDataboxGraph used for displaying xy-values series of connected lines. | 
#include <gtkdatabox_lines.h>
                    GtkDataboxLinesPrivate;
                    GtkDataboxLines;
GtkDataboxGraph*    gtk_databox_lines_new               (guint len,
                                                         gfloat *X,
                                                         gfloat *Y,
                                                         GdkColor *color,
                                                         guint size);
GtkDataboxLines is a GtkDataboxGraph class for displaying xy-values as series of connected lines.
typedef struct _GtkDataboxLinesPrivate GtkDataboxLinesPrivate;
A private data structure used by the GtkDataboxLines. It shields all internal things from developers who are just using the object.
typedef struct _GtkDataboxLines GtkDataboxLines;
GtkDataboxLines is a GtkDataboxGraph class for displaying xy-values as series of connected lines.
GtkDataboxGraph* gtk_databox_lines_new (guint len, gfloat *X, gfloat *Y, GdkColor *color, guint size);
Creates a new GtkDataboxLines object which can be added to a GtkDatabox widget.
| 
 | length of XandY | 
| 
 | array of horizontal position values of markers | 
| 
 | array of vertical position values of markers | 
| 
 | color of the markers | 
| 
 | marker size or line width (depending on the type) | 
| Returns : | A new GtkDataboxLines object |