diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-07-24 11:55:24 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-07-24 11:55:24 +0000 |
commit | ff849eb9f302289b044b9f98eadc02cca4ed2130 (patch) | |
tree | 23c0f6d4e2ab84451d22b43ce98d9f0cc120ccee /src/element | |
parent | 49ded86c90d1bfa6cc0b780b1ad00544f9d198fd (diff) | |
download | zetacomponents-graph-ff849eb9f302289b044b9f98eadc02cca4ed2130.zip zetacomponents-graph-ff849eb9f302289b044b9f98eadc02cca4ed2130.tar.gz |
- Finished exact label renderer and render chart labals again
Diffstat (limited to 'src/element')
-rw-r--r-- | src/element/axis.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/element/axis.php b/src/element/axis.php index 86623a0..7fb051a 100644 --- a/src/element/axis.php +++ b/src/element/axis.php @@ -31,13 +31,6 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement protected $axisSpace = .1; /** - * Padding between labels and axis in pixel - * - * @var integer - */ - protected $labelPadding = 2; - - /** * Color of major majorGrid * * @var ezcGraphColor @@ -130,9 +123,6 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement case 'axisSpace': $this->axisSpace = min( 1, max( 0, (float) $propertyValue ) ); break; - case 'labelPadding': - $this->labelPadding = min( 0, max( 0, (float) $propertyValue ) ); - break; case 'majorGrid': if ( $propertyValue instanceof ezcGraphColor ) { |