summaryrefslogtreecommitdiffstats
path: root/pts-core/objects/pts_Graph/pts_Graph.php
diff options
context:
space:
mode:
Diffstat (limited to 'pts-core/objects/pts_Graph/pts_Graph.php')
-rw-r--r--pts-core/objects/pts_Graph/pts_Graph.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/pts-core/objects/pts_Graph/pts_Graph.php b/pts-core/objects/pts_Graph/pts_Graph.php
index 2e23710..b62b63a 100644
--- a/pts-core/objects/pts_Graph/pts_Graph.php
+++ b/pts-core/objects/pts_Graph/pts_Graph.php
@@ -324,7 +324,14 @@ abstract class pts_Graph
if(is_numeric($maximum))
{
- $maximum = (floor(round($maximum * 1.35) / $this->graph_attr_marks) + 1) * $this->graph_attr_marks;
+ if($maximum <= 100 && $this->graph_y_title == "Percent")
+ {
+ $maximum = (ceil(100 / $this->graph_attr_marks) + 1) * $this->graph_attr_marks;
+ }
+ else
+ {
+ $maximum = (floor(round($maximum * 1.35) / $this->graph_attr_marks) + 1) * $this->graph_attr_marks;
+ }
}
return $maximum;