<?php /** * File containing the ezcGraphOdometerRenderer interface * * @package Graph * @version 1.5 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * Interface which adds the methods required for rendering radar charts to a * renderer * * @version 1.5 * @package Graph */ interface ezcGraphOdometerRenderer { /** * Render odometer chart * * @param ezcGraphBoundings $boundings * @param ezcGraphChartElementAxis $axis * @param ezcGraphOdometerChartOptions $options * @return ezcGraphBoundings */ public function drawOdometer( ezcGraphBoundings $boundings, ezcGraphChartElementAxis $axis, ezcGraphOdometerChartOptions $options ); /** * Draw a single odometer marker. * * @param ezcGraphBoundings $boundings * @param ezcGraphCoordinate $position * @param int $symbol * @param ezcGraphColor $color * @param int $width */ public function drawOdometerMarker( ezcGraphBoundings $boundings, ezcGraphCoordinate $position, $symbol, ezcGraphColor $color, $width ); } ?>