diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-06-06 15:36:18 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-06-06 15:36:18 +0000 |
commit | 20973d01d5039a28bcf2c3ee790e1bf521965016 (patch) | |
tree | 23b5d1ebde5d9b2cf685ff773718cd0b51f009b8 /tests/palette_test.php | |
parent | 4bb4e17c7bf4a45898c9c822be710891a452bd50 (diff) | |
download | zetacomponents-graph-20973d01d5039a28bcf2c3ee790e1bf521965016.zip zetacomponents-graph-20973d01d5039a28bcf2c3ee790e1bf521965016.tar.gz |
- Draw background and border for charts
- Added padding for charts
Diffstat (limited to 'tests/palette_test.php')
-rw-r--r-- | tests/palette_test.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/palette_test.php b/tests/palette_test.php index 86838fd..2abe558 100644 --- a/tests/palette_test.php +++ b/tests/palette_test.php @@ -297,7 +297,7 @@ class ezcGraphPaletteTest extends ezcTestCase } $this->assertEquals( - ezcGraphColor::fromHex( '#BABDB6' ), + ezcGraphColor::fromHex( '#000000FF' ), $chart->palette->chartBorderColor, 'Border color not properly set.' ); @@ -315,7 +315,7 @@ class ezcGraphPaletteTest extends ezcTestCase } $this->assertEquals( - 1, + 0, $chart->palette->chartBorderWidth, 'Border width not properly set.' ); @@ -333,7 +333,7 @@ class ezcGraphPaletteTest extends ezcTestCase } $this->assertEquals( - ezcGraphColor::fromHex( '#BABDB6' ), + ezcGraphColor::fromHex( '#000000FF' ), $chart->palette->elementBorderColor, 'Border color not properly set.' ); @@ -453,7 +453,7 @@ class ezcGraphPaletteTest extends ezcTestCase } $this->assertEquals( - ezcGraphColor::fromHex( '#BABDB6' ), + ezcGraphColor::fromHex( '#000000FF' ), $chart->legend->border, 'Chart background not set from pallet.' ); |