misd/highcharts-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Integrates PHP Highcharts into your Symfony2 application

dev-master 2013-02-18 08:20 UTC

This package is auto-updated.

Last update: 2022-02-01 12:23:38 UTC


README

This bundle is currently under development.

This bundle integrates PHP Highcharts into your Symfony2 application, which allows the programmatic creation of Highcharts.

Authors

Requirements

Installation

  1. Add HighchartsBundle to your dependencies:

    // composer.json
    
    {
       // ...
       "require": {
           // ...
           "misd/highcharts-bundle": "dev-master"
       }
    }
    
  2. Use Composer to download and install HighchartsBundle:

    $ php composer.phar update misd/highcharts-bundle
    
  3. Register the bundle in your application:

    // app/AppKernel.php
    
    class AppKernel extends Kernel
    {
        // ...
        public function registerBundles()
        {
            $bundles = array(
                // ...
                new Misd\HighchartsBundle\MisdHighchartsBundle()
            );
        }
    }
    

Usage

Creating a chart

See the PHP Highcharts documentation for details on how to create a chart object.

Rendering a chart

Use the service:

$chart = $this->container->get('misd_highcharts.renderer')->render($chart);
$container = $this->container->get('misd_highcharts.renderer')->renderContainer($chart);

In a Twig template:

{{ highcharts_render(chart) }}
{{ highcharts_render_container(chart) }}

In a PHP template:

<?php echo $view['misd_highcharts.renderer']->render($chart); ?>
<?php echo $view['misd_highcharts.renderer']->renderContainer($chart); ?>

Reporting an issue or a feature request

Issues and feature requests are tracked in the Github issue tracker.