* $chart->xAxis->axisLabelRenderer = new ezcGraphAxisNoLabelRenderer(); * * * @version //autogentag// * @package Graph */ class ezcGraphAxisNoLabelRenderer extends ezcGraphAxisLabelRenderer { /** * Render Axis labels * * Render labels for an axis. * * @param ezcGraphRenderer $renderer Renderer used to draw the chart * @param ezcGraphBoundings $boundings Boundings of the axis * @param ezcGraphCoordinate $start Axis starting point * @param ezcGraphCoordinate $end Axis ending point * @param ezcGraphChartElementAxis $axis Axis instance * @return void */ public function renderLabels( ezcGraphRenderer $renderer, ezcGraphBoundings $boundings, ezcGraphCoordinate $start, ezcGraphCoordinate $end, ezcGraphChartElementAxis $axis ) { return true; } } ?>