/flot-bundle

Jason Roman's Flot Bundle for Symfony2

Primary LanguagePHPMIT LicenseMIT

Jason Roman's Flot Bundle

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