2017 © Pedro Peláez
 

yii2-extension yii2-gcharts

Google Charts the Yii 2.0 way

image

sjaakp/yii2-gcharts

Google Charts the Yii 2.0 way

  • Sunday, September 17, 2017
  • by sjaakp
  • Repository
  • 5 Watchers
  • 15 Stars
  • 4,629 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 6 Forks
  • 3 Open issues
  • 3 Versions
  • 16 % Grown

The README.md

yii2-gcharts

Google Charts the Yii 2.0 way

Latest Stable Version Total Downloads License, (*1)

yii2-gcharts is a collection of widgets to render selected Google Charts in the Yii 2.0 PHP Framework, like you would use a GridView., (*2)

Currently, yii2-gcharts consists of the following widgets:, (*3)

A demonstration of Yii2-gcharts is here., (*4)

Installation

Install yii2-gcharts with Composer. Either add the following to the require section of your composer.json file:, (*5)

"sjaakp/yii2-gcharts": "*", (*6)

Or run:, (*7)

composer require sjaakp/yii2-gcharts "*", (*8)

You can manually install yii2-gcharts by downloading the source in ZIP-format., (*9)

Using yii2-gcharts

Use the yii2 charts widgets just like you would use a GridView. For instance, in the Controller you might have something like:, (*10)

<?php
// ...
public function actionPie() {
    $dataProvider = new ActiveDataProvider([
        'query' => Country::find(),
        'pagination' => false
    ]);

    return $this->render('pie', [
        'dataProvider' => $dataProvider
    ]);
}
// ...
?>

To render a PieChart in the View we could use:, (*11)

<?php
use sjaakp\gcharts\PieChart;
?>
...
<?= PieChart::widget([
    'height' => '400px',
    'dataProvider' => $dataProvider,
    'columns' => [
        'name:string',
        'population'
    ],
    'options' => [
        'title' => 'Countries by Population'
    ],
]) ?>
...

Each of the chart types has slight variations in the column interpretation, and its own set of options. Consult the Google Charts documentation., (*12)

Options

All the yii2-gcharts widgets share the same options:, (*13)

dataProvider

The data provider for the chart. This property is required. In most cases, it will be an ActiveDataProvider or an ArrayDataProvider., (*14)

columns

Chart column configuration array. Each array element configures one chart column. Each column configuration is an array or a string shortcut., (*15)

An array column configuration can have the following members (all are optional, but at least one must be given):, (*16)

  • attribute The attribute name associated with this column. When value is not specified, the value of the attribute will be retrieved from each data model., (*17)

  • formatted The Google Charts formatted version of the data. Can be a callable of the form function($model, $attribute, $index, $widget)., (*18)

  • label The label assigned to the data. If not given, it is either retrieved from the model or derived from attribute., (*19)

  • pattern The Google Charts pattern., (*20)

  • role The Google Charts role. Can be one of:, (*21)

    • "annotation"
    • "annotationText"
    • "certainty"
    • "emphasis"
    • "interval"
    • "scope"
    • "style"
    • "tooltip"
  • type The Google Charts data type. Can be one of:, (*22)

    • "number" (default)
    • "string"
    • "boolean"
    • "date"
    • "datetime"
    • "timeofday"
  • value The data value. This can be a callable of the form function($model, $attribute, $index, $widget). If not given, the value of the model's attribute is taken., (*23)

The string shortcut configuration specifies the attribute, type, and label in the format "attribute:type:label". Both type and label are optional; they take their default values if omitted., (*24)

mode

string This determines which variant of the chart is drawn. Must be one of:, (*25)

  • "classic" (default) Draws the 'ordinary' version of the chart,
  • "material" Draws the new, Material version of the chart, if available,
  • "transition" Draws the Material version, if available, and also applies convertOptions() to the options

Notice that only a few of the charts are currently available in Material version and that they're in early beta, lacking lots of the 'classic' options., (*26)

Notice also that currently, the Material options are undocumented, so the only practical way to work with Material charts is using the "transition" mode., (*27)

version

string The version of the gcharts library used. Must be one of:, (*28)

  • "current" (default),
  • "upcoming",
  • number

More information., (*29)

mapsApiKey

string Applies to GeoChart only. It is advised to provide GeoChart with an API-key of Google Maps., (*30)

The Versions

17/09 2017

dev-master

9999999-dev

Google Charts the Yii 2.0 way

  Sources   Download

MIT

The Requires

 

extension yii2 yii widget charts visualization

17/09 2017

1.1.0

1.1.0.0

Google Charts the Yii 2.0 way

  Sources   Download

MIT

The Requires

 

extension yii2 yii widget charts visualization

29/10 2015

v1.0.0

1.0.0.0

Google Charts the Yii 2.0 way

  Sources   Download

MIT

The Requires

 

extension yii2 yii widget charts visualization