blob: c127811ad0f151289178dd7cc828ce6fb6ad3a2e [file] [log] [blame]
<?php
require_once 'tutorial_autoload.php';
$graph = new ezcGraphOdometerChart();
$graph->title = 'Sample odometer';
$graph->options->font->maxFontSize = 12;
$graph->data['data'] = new ezcGraphArrayDataSet(
array( 1, 3, 9 )
);
$graph->render( 400, 150, 'tutorial_odometer_chart.svg' );
?>