Skip to content

Commit

Permalink
MAGETWO-82761: [Backport 2.2-develop] Dashboard Fix Y Axis for range #…
Browse files Browse the repository at this point in the history
  • Loading branch information
ishakhsuvarov authored Oct 26, 2017
2 parents 501b31a + 79c847e commit 2a6c3ea
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 2a6c3ea

Please sign in to comment.