[ Index ]

PHP Cross Reference of MantisBT

title

Body

[close]

/library/ezc/Graph/src/options/ -> radar_chart.php (summary)

File containing the ezcGraphRadarChartOption class

Copyright: Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
License: http://ez.no/licenses/new_bsd New BSD License
Version: 1.5
File Size: 172 lines (6 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

ezcGraphRadarChartOptions:: (3 methods):
  __construct()
  __set()
  __get()


Class: ezcGraphRadarChartOptions  - X-Ref

Class containing the basic options for radar charts.

<code>
$wikidata = include 'tutorial_wikipedia_data.php';

$graph = new ezcGraphRadarChart();
$graph->title = 'Wikipedia articles';

$graph->options->fillLines = 220;

// Add data
foreach ( $wikidata as $language => $data )
{
$graph->data[$language] = new ezcGraphArrayDataSet( $data );
$graph->data[$language][] = reset( $data );
}

$graph->render( 400, 150, 'tutorial_radar_chart.svg' );
</code>

__construct( array $options = array()   X-Ref
Constructor

param: array $options Default option array
return: void

__set( $propertyName, $propertyValue )   X-Ref
Set an option value

param: string $propertyName
param: mixed $propertyValue
return: void

__get( $propertyName )   X-Ref
__get

param: mixed $propertyName
return: mixed



Generated: Thu Jul 28 15:48:31 2011 Cross-referenced by PHPXref 0.7