Skip to content

Commit

Permalink
Fix Y Axis for order qty
Browse files Browse the repository at this point in the history
  • Loading branch information
osrecio committed Oct 25, 2017
1 parent 08f0056 commit d2d555e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/code/Magento/Backend/Block/Dashboard/Graph.php
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,8 @@ public function getChartUrl($directUrl = true)
$tmpstring = implode('|', $this->_axisLabels[$idx]);

$valueBuffer[] = $indexid . ":|" . $tmpstring;
} elseif ($idx == 'y') {
$valueBuffer[] = $indexid . ":|" . implode('|', $yLabels);
}
$indexid++;
}
Expand Down

0 comments on commit d2d555e

Please sign in to comment.