Source for file Theme.php
Documentation is available at Theme.php
* Description: Summary description for Theme
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
public function Theme($c= null) {
public abstract function apply();
// Returns Array of Color
// Color::fromRgb(90, 150, 220),
// Color::fromRgb(230, 90, 40),
// Color::fromRgb(230, 160, 15),
Utils::hex2rgb("FE9B82"),
Utils::hex2rgb("24D1FC"),
Utils::hex2rgb("0DBC7C"),
Utils::hex2rgb("2F85FD"),
Utils::hex2rgb("FCFEFD"),
Utils::hex2rgb("214EE2"),
Utils::hex2rgb("D63829"),
Utils::hex2rgb("0094B7"),
Utils::hex2rgb("00865A"),
Utils::hex2rgb("0046D2"),
Utils::hex2rgb("FAE5D3"),
Utils::hex2rgb("D8D8D8"),
Utils::hex2rgb("A1A55D"),
Utils::hex2rgb("3153C4"),
Utils::hex2rgb("0996E7"),
Utils::hex2rgb("4AE8F6"),
Utils::hex2rgb("A7A2B1"),
Utils::hex2rgb("84A7C9"),
Utils::hex2rgb("51798C"),
Utils::hex2rgb("B7CDD8"),
Utils::hex2rgb("536508"),
Utils::hex2rgb("7BD8F7"),
$colorArray[] = new Color(20+ ($i* 30),255- ($i* 50),225- ($i* 8));
public function invoke($chart) {
|