diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-07-21 14:14:56 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-07-21 14:14:56 +0000 |
commit | 49ded86c90d1bfa6cc0b780b1ad00544f9d198fd (patch) | |
tree | 29a292b23a6b1af6159fa6fa82515c3aed1097e6 /src/element | |
parent | 14f4f83b181822bb65c55ca76eb0e28157ba43b4 (diff) | |
download | zetacomponents-graph-49ded86c90d1bfa6cc0b780b1ad00544f9d198fd.zip zetacomponents-graph-49ded86c90d1bfa6cc0b780b1ad00544f9d198fd.tar.gz |
- Readded drawing of axis steps and grids (only available in
ezcGraphAxisExactLabelRenderer yet)
Diffstat (limited to 'src/element')
-rw-r--r-- | src/element/axis.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/element/axis.php b/src/element/axis.php index ac867a7..86623a0 100644 --- a/src/element/axis.php +++ b/src/element/axis.php @@ -202,14 +202,14 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement * * @return integer Count of minor steps */ - abstract protected function getMinorStepCount(); + abstract public function getMinorStepCount(); /** * Return count of major steps * * @return integer Count of major steps */ - abstract protected function getMajorStepCount(); + abstract public function getMajorStepCount(); /** * Get label for a dedicated step on the axis @@ -217,7 +217,7 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement * @param integer $step Number of step * @return string label */ - abstract protected function getLabel( $step ); + abstract public function getLabel( $step ); /** * Add data for this axis |