diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-08-18 12:56:10 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-08-18 12:56:10 +0000 |
commit | 5091a24682cf37af25eebd4158a0d9480aea6252 (patch) | |
tree | d4998b172a75d207daed201225a988912485e5a9 /tests/renderer_2d_test.php | |
parent | 94953ea4f75810e5e667425bfd55ce8d51672ee3 (diff) | |
download | zetacomponents-graph-5091a24682cf37af25eebd4158a0d9480aea6252.zip zetacomponents-graph-5091a24682cf37af25eebd4158a0d9480aea6252.tar.gz |
- Started refactoring of font configuration
# - The next iteration will enable you to use the different font rendering
# methods from ext/GD
Diffstat (limited to 'tests/renderer_2d_test.php')
-rw-r--r-- | tests/renderer_2d_test.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/renderer_2d_test.php b/tests/renderer_2d_test.php index 362a7e0..0b3a8e0 100644 --- a/tests/renderer_2d_test.php +++ b/tests/renderer_2d_test.php @@ -1560,7 +1560,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->data['Line 2'] = new ezcGraphArrayDataSet( array( 'sample 1' => 543, 'sample 2' => 234, 'sample 3' => 298, 'sample 4' => 5, 'sample 5' => 613) ); $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1581,7 +1580,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->data['Line 2'] = new ezcGraphArrayDataSet( array( 'sample 1' => 543, 'sample 2' => 234, 'sample 3' => 298, 'sample 4' => 5, 'sample 5' => 613) ); $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1608,7 +1606,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->xAxis->axisLabelRenderer = new ezcGraphAxisBoxedLabelRenderer(); $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1629,7 +1626,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->data['Line 2'] = new ezcGraphArrayDataSet( array( 'sample 1' => 543, 'sample 2' => 234, 'sample 3' => 298, 'sample 4' => -5, 'sample 5' => -124) ); $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1654,7 +1650,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->data['sample']->highlight['Safari'] = true; $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1681,7 +1676,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->background->position = ezcGraph::BOTTOM | ezcGraph::RIGHT; $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1708,7 +1702,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->background->repeat = ezcGraph::HORIZONTAL | ezcGraph::VERTICAL; $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1733,7 +1726,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->renderer->options->pieChartOffset = 156; $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( @@ -1758,7 +1750,6 @@ class ezcGraphRenderer2dTest extends ezcTestCase $chart->legend->title = 'Legenda'; $chart->driver = new ezcGraphSvgDriver(); - $chart->options->font = $this->basePath . 'font.ttf'; $chart->render( 500, 200, $filename ); $this->compare( |