Graph: ezcGraphRenderer2dOptions
[ ]
[ Gallery ]
[ ]
[ ]
[ ]
[ ]
Class: ezcGraphRenderer2dOptions
|
Class containing the extended options available in 2d renderer. [
source]
1. $graph = new ezcGraphPieChart();
2. $graph->palette = new ezcGraphPaletteBlack();
3. $graph->title = 'Access statistics';
4. $graph->options->label = '%2$d (%3$.1f%%)';
5.
6. $graph->data['Access statistics'] = new ezcGraphArrayDataSet( array(
7. 'Mozilla' => 19113,
8. 'Explorer' => 10917,
9. 'Opera' => 1464,
10. 'Safari' => 652,
11. 'Konqueror' => 474,
12. ) );
13. $graph->data['Access statistics']->highlight['Explorer'] = true;
14.
15. // $graph->renderer = new ezcGraphRenderer2d();
16.
16.
17. $graph->renderer->options->moveOut = .2;
18.
19. $graph->renderer->options->pieChartOffset = 63;
20.
21. $graph->renderer->options->pieChartGleam = .3;
22. $graph->renderer->options->pieChartGleamColor = '#FFFFFF';
23. $graph->renderer->options->pieChartGleamBorder = 2;
24.
25. $graph->renderer->options->pieChartShadowSize = 3;
26. $graph->renderer->options->pieChartShadowColor = '#000000';
27.
28. $graph->renderer->options->legendSymbolGleam = .5;
29. $graph->renderer->options->legendSymbolGleamSize = .9;
30. $graph->renderer->options->legendSymbolGleamColor = '#FFFFFF';
31.
32. $graph->renderer->options->pieChartSymbolColor = '#BABDB688';
33.
34. $graph->render( 400, 150, 'tutorial_pie_chart_pimped.svg' );
Parents
ezcBaseOptions
|
--ezcGraphChartOptions
|
--ezcGraphRendererOptions
|
--ezcGraphRenderer2dOptions
Properties
Inherited Member Variables
From
ezcBaseOptions:
Inherited Methods
From
ezcBaseOptions :
Last updated: Mon, 30 Mar 2009