Download the PHP package martinsik/google-chart-generator without Composer
On this page you can find all versions of the php package martinsik/google-chart-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download martinsik/google-chart-generator
More information about martinsik/google-chart-generator
Files in martinsik/google-chart-generator
Package google-chart-generator
Short Description PHP 5.4+ wrapper around Google Chart API using Polymer 1.0
License MIT
Homepage https://github.com/martinsik/google-chart-generator
Informations about the package google-chart-generator
Google Chart Generator
PHP 5.4+ wrapper around Google Chart API based on Polymer 1.0 component <google-chart>
.
Installation
Add composer.json
dependency:
Add bower.json
dependency (Polymer 1.0):
Eventually, install google-chart
Polymer component as you want.
Charts
Right now, four chart types are supported: line, bar, column and pie charts.
The PHP wrapper is very liberal, it lets you set any Google Chart options via data or chart options. It doesn't have special methods for every possible option because there are are so many of them and it doesn't make sense to make wrappers for every single one of them.
To use any chart you have to import Polymer 1.0
Line chart
Creating a line chart:
Get element HTML with $chart->getElement()
.
See all possible options for line charts.
The above code would result into this chart.
Pie chart
Creating pie chart:
Get element HTML with $chart->getElement()
.
See all possible options for pie charts.
Bar chart
Creating bar chart:
Get element HTML with $chart->getElement()
.
See all possible options for bar charts.
Column chart
Creating column chart:
Get element HTML with $chart->getElement()
.
See all possible options for column charts.
Tests
All tests in this project are based on behat.
Then manually check generated charts in features/generated_html
License
Google Chart Generator is licensed under The MIT License.