diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-09-19 13:29:02 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-09-19 13:29:02 +0000 |
commit | fe13be6dac3b9a019cd4ee7a4e1b3272ef922871 (patch) | |
tree | 3ac7e934fb907911583e4bd4c48aec7dc12bde95 /tests/pie_test.php | |
parent | 27cffe45cdf9cc6d36751bcc998459ae9d8a1f4b (diff) | |
download | zetacomponents-graph-fe13be6dac3b9a019cd4ee7a4e1b3272ef922871.zip zetacomponents-graph-fe13be6dac3b9a019cd4ee7a4e1b3272ef922871.tar.gz |
- Added background and border to font configuration
- Show value for highlighted datapoints in bar and line charts
Diffstat (limited to 'tests/pie_test.php')
-rw-r--r-- | tests/pie_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pie_test.php b/tests/pie_test.php index b7b1c14..c3d5883 100644 --- a/tests/pie_test.php +++ b/tests/pie_test.php @@ -213,8 +213,8 @@ class ezcGraphPieChartTest extends ezcImageTestCase $chart->data['Skien'] = new ezcGraphArrayDataSet( array( 'Norwegian' => 10, 'Dutch' => 3, 'German' => 2, 'French' => 2, 'Hindi' => 1, 'Taiwanese' => 1, 'Brazilian' => 1, 'Venezuelan' => 1, 'Japanese' => 1, 'Czech' => 1, 'Hungarian' => 1, 'Romanian' => 1 ) ); $chart->data['Skien']->highlight['Norwegian'] = true; - $chart->renderer->options->pieVerticalSize = .1; - $chart->renderer->options->pieHorizontalSize = .1; + $chart->renderer->options->pieVerticalSize = .2; + $chart->renderer->options->pieHorizontalSize = .2; $chart->render( 500, 200, $filename ); |