Corrected bug in chart rendering which caused the ordinate label to never get displayed
[pspp] / src / output / cairo-chart.h
index 090bc9cede577666f7e39caa0298d22a1602ee0e..f415d1b9152d24a0ec8ca9ead02824e138c05aa8 100644 (file)
@@ -44,8 +44,11 @@ struct xrchart_axis
 /* The geometry of a chart. */
 struct xrchart_geometry
   {
-    int abscissa_top;
-    int ordinate_right;
+    /* Bottom of the abscissa segment */
+    int abscissa_bottom;
+
+    /* Left of the ordinate segment */
+    int ordinate_left;
 
     int title_bottom;