Cartesian Graphs: use circular marker instead of square one.
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 23 Mar 2014 10:34:07 +0000 (11:34 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sun, 23 Mar 2014 10:34:07 +0000 (11:34 +0100)
Also slightly smaller.  This I think is a bit more aesthetically
pleasing.

src/output/cairo-chart.c

index 88e70493d6585c0f2e8b84f66c760f76e1bdd9db..8886b2642d7cf7d0b665385918f0761cc8d2d050 100644 (file)
@@ -486,7 +486,7 @@ xrchart_datum (cairo_t *cr, const struct xrchart_geometry *geom,
   double x_pos = (x - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
   double y_pos = (y - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
 
-  xrchart_draw_marker (cr, x_pos, y_pos, XRMARKER_SQUARE, 15);
+  xrchart_draw_marker (cr, x_pos, y_pos, XRMARKER_CIRCLE, 10);
 }
 
 void