Skip to content

Commit

Permalink
Merge pull request #62 from mykelscappin/master
Browse files Browse the repository at this point in the history
correcting parameter error
  • Loading branch information
szymach authored Jul 26, 2019
2 parents c6df464 + ea60e0d commit 9cbaa96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Draw.php
Original file line number Diff line number Diff line change
Expand Up @@ -7485,13 +7485,13 @@ public function drawBarChart(array $Format = [])
$this->addToImageMap(
"RECT",
sprintf(
"%s,%s,%s,%s,%s",
"%s,%s,%s,%s",
floor($X + $XOffset + $XSpace),
floor($Y1),
floor($X + $XOffset + $XSize - $XSpace),
floor($Y2),
$this->toHTMLColor($R, $G, $B)
floor($Y2)
),
$this->toHTMLColor($R, $G, $B),
$SerieDescription,
$this->scaleFormat($Serie["Data"][$Key], $Mode, $Format, $Unit)
);
Expand Down

0 comments on commit 9cbaa96

Please sign in to comment.