blob: d5c0768fa806b0f885e2c8ca3e21432f2c745ae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/**
* File containing the abstract ezcGraphDataSetIntProperty class
*
* @package Graph
* @version //autogentag//
* @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Class for axis properties of datasets
*
* This class is used to store properties for datasets, which should be
* validated as objects extending the ezcGraphChartElementAxis class.
*
* For a basic usage example of those dataset properties take a look at the API
* documentation of the ezcGraphDataSetProperty class.
*
* @version //autogentag//
* @package Graph
*/
class ezcGraphDataSetAxisProperty extends ezcGraphDataSetProperty
{
/**
* Chacks if value is really an axis
*
* @param ezcGraphChartElementAxis $value
* @return void
*/
protected function checkValue( &$value )
{
if ( ! $value instanceof ezcGraphChartElementAxis )
{
throw new ezcBaseValueException( 'default', $value, 'ezcGraphChartElementAxis' );
}
return true;
}
/**
* Set an option.
*
* Sets an option using ArrayAccess.
*
* This is deaktivated, because you need not set a different axis for some
* data point.
*
* @param string $key The option to set.
* @param mixed $value The value for the option.
* @return void
*
* @throws ezcGraphInvalidAssignementException
* Always
*/
public function offsetSet( $key, $value )
{
throw new ezcGraphInvalidAssignementException();
}
}
?>
|