Closed GoogleCodeExporter closed 9 years ago
If you replace this line (104):
$retStr .= "&chxr=0,1,4|1,1,10";
with:
$retStr .= "&chxr=0,1,4|1,1,".utility::getMaxOfArray($this->values);
the getAxesString method becomes:
protected function getAxesString(){
$retStr = "&chxt=x,y";
$retStr .= "&chxr=0,1,4|1,1,".utility::getMaxOfArray($this->values);
return $retStr;
}
Cheers, Marko
Original comment by m.van.de...@gmail.com
on 22 Apr 2008 at 4:01
Thanks for the patch, this actually makes scaling work as expected. Is the
author
reading this?? ;)
Original comment by toupeir...@gmail.com
on 1 Jul 2009 at 2:40
Fixed with the changes in rev. 14
Original comment by bardellie
on 12 May 2010 at 11:48
Original issue reported on code.google.com by
josemaug...@gmail.com
on 7 Jan 2008 at 5:03