jasonroman / flot-bundle
Jason Roman's Flot Bundle for Symfony2
Package info
github.com/jasonroman/flot-bundle
Type:symfony-bundle
pkg:composer/jasonroman/flot-bundle
1.0
2014-04-15 04:14 UTC
Requires
- php: >=5.3.0
- jasonroman/flot: 1.0.*
This package is not auto-updated.
Last update: 2026-02-28 23:17:50 UTC
README
This bundle requires (and loads) the jasonroman/flot package.
Installation
Add the bundle to your composer.json
{ "require": { "jasonroman/flot-bundle": "1.0.*@dev" } }
Register the bundle in app/AppKernel.php
$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);