rickselby / svglapchart
v0.4
2016-05-26 13:09 UTC
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2024-11-10 23:43:48 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();