Code

when building the sgridstep in alt-y-grid mode, take the --base into consideration.
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Thu, 16 Jun 2005 22:09:36 +0000 (22:09 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Thu, 16 Jun 2005 22:09:36 +0000 (22:09 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@641 a5681a0c-68f1-0310-ab6d-d61299d08faa

program/src/rrd_graph.c

index 77a5051386fbf735fc7f251085fcfe329ea5969a..43af725762805f95ca00327132e9c8b77c67fca2 100644 (file)
@@ -1547,7 +1547,7 @@ calc_horizontal_grid(image_desc_t   *im)
            if(decimals <= 0) /* everything is small. make place for zero */
                decimals = 1;
            
-           im->ygrid_scale.gridstep = pow((double)10, floor(log10(range)));
+           im->ygrid_scale.gridstep = pow((double)10, floor(log10(range*im->viewfactor/im->magfact)))/im->viewfactor*im->magfact;
            
            if(im->ygrid_scale.gridstep == 0) /* range is one -> 0.1 is reasonable scale */
                im->ygrid_scale.gridstep = 0.1;