Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 562ff11efeeb995695bd63e38997c454 > files > 111

ezcomponents-Graph-1.5-2.mga3.noarch.rpm

<?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' );

?>