* Bowing params are working better.
[scdataviz] / graph.h
diff --git a/graph.h b/graph.h
index 927935b..cbdfe5d 100644 (file)
--- a/graph.h
+++ b/graph.h
@@ -52,6 +52,14 @@ struct graph_line {
   double p3_y;
 };
 
+struct graph_axis {
+  double start;
+  double step;
+  int xminor;
+  int subminor;
+  GString title;
+};
+
 typedef struct _Graph {
   GObject parent_instance;
   /*Array of n_points sets of x,y coords*/
@@ -63,6 +71,8 @@ typedef struct _Graph {
   double maxy;
   double miny;
   graph_symbol symbol;
+  struct graph_axis *xaxis;
+  struct graph_axis *yaxis;
 } Graph;
 
 typedef struct _GraphClass {