Jason Roman's Flot Bundle
This bundle requires (and loads) the jasonroman/flot package., (*1)
Installation
Add the bundle to your composer.json
, (*2)
{
"require": {
"jasonroman/flot-bundle": "1.0.*@dev"
}
}
Register the bundle in app/AppKernel.php
, (*3)
$bundles = array(
// ...
new JasonRoman\Bundle\FlotBundle\JasonRomanFlotBundle(),
);
Usage
// convert to Flot JSON data from PHP arrays
$flotData = $this->container->get('jasonroman.flot')->convert($data);
$flotData = $this->container->get('jasonroman.flot')->convert($data, 'horizontal');
$flotData = $this->container->get('jasonroman.flot')->convert($data, 'vertical', $datetime = true);
$flotData = $this->container->get('jasonroman.flot')->convert($pieData);