rickselby/svglapchart

v0.4 2016-05-26 13:09 UTC

This package is auto-updated.

Last update: 2024-04-10 22:30:13 UTC


README

Generate SVG lap charts in PHP.

Example

// Create the chart
$chart = new chart();

// Set information for each driver
foreach($drivers AS $driver) {
    $chart->setDriver($driver['name'], $driver['colour'], $driver['positions']);
}

// Set how many drivers were lapped on each lap
$chart->setLapped($lapped);

// Get the SVG
echo $chart->generate();