diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-09-12 11:34:45 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-09-12 11:34:45 +0000 |
commit | 77b4b86c60511c336dd5d8425fa537fbedc2dac5 (patch) | |
tree | 44fa16fb6c7888cb665914115eb3a17b972e08a0 /src/palette | |
parent | 22649b2b81c18461fd85793690de5d04b45806fa (diff) | |
download | zetacomponents-graph-77b4b86c60511c336dd5d8425fa537fbedc2dac5.zip zetacomponents-graph-77b4b86c60511c336dd5d8425fa537fbedc2dac5.tar.gz |
- Added ez blue palette
Diffstat (limited to 'src/palette')
-rw-r--r-- | src/palette/ez_blue.php | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/palette/ez_blue.php b/src/palette/ez_blue.php new file mode 100644 index 0000000..bb01bda --- /dev/null +++ b/src/palette/ez_blue.php @@ -0,0 +1,82 @@ +<?php +/** + * File containing the abstract ezcGraphPaletteEzBlue class + * + * @package Graph + * @version //autogentag// + * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved. + * @license http://ez.no/licenses/new_bsd New BSD License + */ +/** + * Light blue color pallet for ezcGraph based on blue eZ colors + * + * @package Graph + */ +class ezcGraphPaletteEzBlue extends ezcGraphPalette +{ + /** + * Axiscolor + * + * @var ezcGraphColor + */ + protected $axisColor = '#2E3436'; + + /** + * Array with colors for datasets + * + * @var array + */ + protected $dataSetColor = array( + '#5489F2', + '#699BFF', + '#85AEFF', + '#A3C2FF', + '#BDD3FF', + ); + + /** + * Array with symbols for datasets + * + * @var array + */ + protected $dataSetSymbol = array( + ezcGraph::BULLET, + ); + + /** + * Name of font to use + * + * @var string + */ + protected $fontName = 'sans-serif'; + + /** + * Fontcolor + * + * @var ezcGraphColor + */ + protected $fontColor = '#2E3436'; + + /** + * Backgroundcolor for chart + * + * @var ezcGraphColor + */ + protected $chartBackground = '#FFFFFF'; + + /** + * Padding in elements + * + * @var integer + */ + protected $padding = 1; + + /** + * Margin of elements + * + * @var integer + */ + protected $margin = 0; +} + +?> |