diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-03-01 13:43:50 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-03-01 13:43:50 +0000 |
commit | 76010f9f5aa62a1f1925b122a6e15e826f7f5564 (patch) | |
tree | 2129ea1b8e33c0c623fd5642676871ddcca3d0c3 /src/element | |
parent | 897d61bc39c3a916fd178d8b973bdd79aba1f40d (diff) | |
download | zetacomponents-graph-76010f9f5aa62a1f1925b122a6e15e826f7f5564.zip zetacomponents-graph-76010f9f5aa62a1f1925b122a6e15e826f7f5564.tar.gz |
- Implemented #10276 for boxed axis label renderer
- Fixed issue with boxed axis label renderer labels were not properly centered
Diffstat (limited to 'src/element')
-rw-r--r-- | src/element/axis.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/element/axis.php b/src/element/axis.php index d332b89..c3cab21 100644 --- a/src/element/axis.php +++ b/src/element/axis.php @@ -267,9 +267,9 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement ( $major === $majorSteps ) ); - // Do not add minor steps at major steps positions if ( $minorStepsPerMajorStepCount > 0 ) { + // Do not add minor steps at major steps positions for( $minor = 1; $minor < $minorStepsPerMajorStepCount; ++$minor ) { $majorStep->childs[] = new ezcGraphAxisStep( |