lordbaine/fusion-charts-bundle

There is no license information available for the latest version (dev-master) of this package.

FusionCharts Bundle for Symfony2

dev-master 2013-05-30 17:12 UTC

This package is not auto-updated.

Last update: 2025-01-13 15:31:57 UTC


README

FusionCharts Bundle for Symfony2

Current Version

FusionCharts XT (v3.3.1 - Service Release 2)

Installation

Add bundle to your composer.json file

// composer.json

{
    "require": {
        // ...
        "lordbaine/fusion-charts-bundle": "dev-master"
    }
}

Add bundle to your application kernel

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new LordBaine\FusionChartsBundle\LordBaineFusionChartsBundle(),
        // ...
    );
}

Download the bundle using Composer

$ php composer.phar update lordbaine/fusion-charts-bundle

Install assets

Given your server's public directory is named "web", install the public vendor resources

$ php app/console assets:install web

Optionally, use the --symlink attribute to create links rather than copies of the resources

$ php app/console assets:install --symlink web

Usage

Refer to the desired files in your HTML template, e.g.

{% javascripts '@LordBaineFusionChartsBundle/Resources/public/js/FusionCharts.js' %}
    <script type="text/javascript" src="{{ asset_url }}"></script>
{% endjavascripts %}

Licenses

Refer to the source code of the included files for license information

References

  1. http://www.fusioncharts.com/products/suite/fusioncharts-xt/
  2. http://symfony.com