diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2009-05-28 14:33:36 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2009-05-28 14:33:36 +0000 |
commit | eb36eb0b72d1e0b01b46f4570c2f6e77ba723e63 (patch) | |
tree | 4cf08c70237495df7c39cd2a828515e2c59895d1 /src/interfaces | |
parent | b24c848560db8723e04cffe2d04c0a6f7089181e (diff) | |
download | zetacomponents-graph-eb36eb0b72d1e0b01b46f4570c2f6e77ba723e63.zip zetacomponents-graph-eb36eb0b72d1e0b01b46f4570c2f6e77ba723e63.tar.gz |
- Fixed #14857: Highlight text misplaced in charts with multiple bar data
sets.
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/renderer.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/interfaces/renderer.php b/src/interfaces/renderer.php index 115a6ef..3262dcf 100644 --- a/src/interfaces/renderer.php +++ b/src/interfaces/renderer.php @@ -253,6 +253,8 @@ abstract class ezcGraphRenderer * @param ezcGraphColor $markLines * @param int $xOffset * @param int $yOffset + * @param float $stepSize + * @param int $type * @return void */ abstract public function drawDataHighlightText( @@ -267,7 +269,9 @@ abstract class ezcGraphRenderer $size, ezcGraphColor $markLines = null, $xOffset = 0, - $yOffset = 0 + $yOffset = 0, + $stepSize = 0., + $type = ezcGraph::LINE ); /** |