diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-04-12 10:17:58 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-04-12 10:17:58 +0000 |
commit | 6368fc5b861737d0620995bc930317d66e8c31c7 (patch) | |
tree | bea4725282edd80f27fe7930b59a9002cac3a480 /tests/renderer_3d_test.php | |
parent | 316e509e2715f72a37ad0fea7131ea8d17ea1578 (diff) | |
download | zetacomponents-graph-6368fc5b861737d0620995bc930317d66e8c31c7.zip zetacomponents-graph-6368fc5b861737d0620995bc930317d66e8c31c7.tar.gz |
- Fixed testRenderBarChartWithMoreBarsThenMajorSteps for 3D renderer
Diffstat (limited to 'tests/renderer_3d_test.php')
-rw-r--r-- | tests/renderer_3d_test.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/renderer_3d_test.php b/tests/renderer_3d_test.php index c4bf94d..63fa015 100644 --- a/tests/renderer_3d_test.php +++ b/tests/renderer_3d_test.php @@ -1067,6 +1067,9 @@ class ezcGraphRenderer3dTest extends ezcGraphTestCase $chart = new ezcGraphBarChart(); $chart->legend = false; + $chart->xAxis = new ezcGraphChartElementNumericAxis(); + $chart->xAxis->axisLabelRenderer = new ezcGraphAxisBoxedLabelRenderer(); + $chart->data['dataset'] = new ezcGraphArrayDataSet( array( 12, 43, 324, 12, 43, 125, 120, 123 , 543, 12, 45, 76, 87 , 99, 834, 34, 453 ) ); $chart->data['dataset']->color = '#3465A47F'; |