diff options
Diffstat (limited to 'src/datasets/base.php')
-rw-r--r-- | src/datasets/base.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/datasets/base.php b/src/datasets/base.php index 219b3f9..5dc9ae6 100644 --- a/src/datasets/base.php +++ b/src/datasets/base.php @@ -40,6 +40,10 @@ * @property mixed $fillLine * Interpretation depends on underlying chart type * @see chart type fillLines option for details + * @property bool $boundFillToPreviousDataSet + * Only fill the region between the current data set + * and the previous data set. Only works for radar + * plots at this time. @see $fillLine property. * @property int $displayType * Display type of chart data * @property string $url @@ -114,6 +118,7 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable $this->properties['highlight']->default = false; $this->properties['fillLine'] = false; + $this->properties['boundFillToPreviousDataSet'] = false; } /** @@ -168,6 +173,10 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable : (int) $propertyValue ); break; + case 'boundFillToPreviousDataSet': + $this->properties[$propertyName] = $propertyValue; + break; + default: throw new ezcBasePropertyNotFoundException( $propertyName ); break; |