summaryrefslogtreecommitdiffstats
path: root/src/interfaces/chart.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/chart.php')
-rw-r--r--src/interfaces/chart.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/chart.php b/src/interfaces/chart.php
index 0bef62b..ddcc184 100644
--- a/src/interfaces/chart.php
+++ b/src/interfaces/chart.php
@@ -66,7 +66,7 @@ abstract class ezcGraphChart implements ArrayAccess
public function __construct( array $options = array() )
{
- $this->__set( 'palette', 'Tango' );
+ $this->__set( 'palette', new ezcGraphPaletteTango() );
// Add standard elements
$this->addElement( 'title', new ezcGraphChartElementText() );
@@ -144,7 +144,7 @@ abstract class ezcGraphChart implements ArrayAccess
}
else
{
- $this->palette = ezcGraph::createPalette( $propertyValue );
+ throw new ezcBaseValueException( "palette", $propertyValue, "instanceof ezcGraphPalette" );
}
$this->setFromPalette( $this->palette );
OpenPOWER on IntegriCloud