summaryrefslogtreecommitdiffstats
path: root/src/options/chart.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/chart.php')
-rw-r--r--src/options/chart.php63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/options/chart.php b/src/options/chart.php
index 18ea61c..788a03b 100644
--- a/src/options/chart.php
+++ b/src/options/chart.php
@@ -30,48 +30,6 @@ class ezcGraphChartOptions extends ezcBaseOptions
protected $height;
/**
- * Background images filename
- *
- * @var string
- */
- protected $backgroundImage;
-
- /**
- * Background color of the chart
- *
- * @var ezcGraphColor
- */
- protected $background;
-
- /**
- * Border color of the chart
- *
- * @var ezcGraphColor
- */
- protected $border;
-
- /**
- * Border width
- *
- * @var int
- */
- protected $borderWidth = 0;
-
- /**
- * Space between border and content
- *
- * @var integer
- */
- protected $padding = 0;
-
- /**
- * Distance between outer boundings and border of an element
- *
- * @var integer
- */
- protected $margin = 0;
-
- /**
* Font used in the graph
*
* @var int
@@ -82,9 +40,6 @@ class ezcGraphChartOptions extends ezcBaseOptions
{
$this->font = new ezcGraphFontOptions();
- $this->backgroundImage = new ezcGraphChartElementBackgroundImage();
- $this->backgroundImage->position = ezcGraph::CENTER | ezcGraph::MIDDLE;
-
parent::__construct( $options );
}
@@ -107,24 +62,6 @@ class ezcGraphChartOptions extends ezcBaseOptions
case 'height':
$this->height = max( 1, (int) $propertyValue );
break;
- case 'padding':
- $this->padding = max( 0, (int) $propertyValue );
- break;
- case 'margin':
- $this->margin = max( 0, (int) $propertyValue );
- break;
- case 'backgroundImage':
- $this->backgroundImage->source = $propertyValue;
- break;
- case 'background':
- $this->background = ezcGraphColor::create( $propertyValue );
- break;
- case 'border':
- $this->border = ezcGraphColor::create( $propertyValue );
- break;
- case 'borderWidth':
- $this->borderWidth = max( 0, (int) $propertyValue );
- break;
case 'font':
$this->font->font = $propertyValue;
break;
OpenPOWER on IntegriCloud