mrlco/yii2-google-charts

Yii2 中 Google 图表的包装器

安装: 811

依赖项: 0

建议者: 0

安全: 0

星标: 3

关注者: 2

分支: 0

公开问题: 1

类型:yii2-extension

1.0.1 2016-07-10 11:11 UTC

This package is auto-updated.

Last update: 2024-09-06 07:31:49 UTC


README

Yii2 中 Google 图表的包装器

安装

安装此扩展的首选方式是通过 Composer

运行以下命令之一

php composer.phar require mrlco/yii2-google-charts "*"

或者在您的 composer.json 文件的 require 部分添加以下内容

"mrlco/yii2-google-charts": "*"

使用方法

更多信息请参阅 Google Charts

请记住在需要的地方包含 GoogleCharts.php

    use mrlco\googlecharts\GoogleCharts;

并在您的视图中

<?php
/* For more info on usage of any type of charts, see the google charts documentation */

// PieChart
echo GoogleCharts::widget([
    'visualization' => 'PieChart',
    'containerId' => 'chart-container',
    'data' => [
        ['Task', 'Hours per Day'],
        ['Work', 11],
        ['Eat', 2],
        ['Commute', 2],
        ['Watch TV', 2],
        ['Sleep', 7]
    ],
    'options' => ['title' => 'My Daily Activity']
]);

// LineChart
echo GoogleCharts::widget([
    'visualization' => 'LineChart',
    'containerId' => 'chart-container',
    'data' => [
        ['Task', 'Hours per Day'],
        ['Work', 11],
        ['Eat', 2],
        ['Commute', 2],
        ['Watch TV', 2],
        ['Sleep', 7]
    ],
    'options' => ['title' => 'My Daily Activity']
]);

// Another LineChart example
echo GoogleCharts::widget([
    'visualization' => 'LineChart',
    'containerId' => 'chart-container',
    'data' => [
        ['Year', 'Sales', 'Expenses'],
        ['2004', 1000, 400],
        ['2005', 1170, 460],
        ['2006', 660, 1120],
        ['2007', 1030, 540],
    ],
    'options' => [
        'title' => 'My Company Performance',
        'titleTextStyle' => ['color' => '#FF0000'],
        'vAxis' => [
            'title' => 'Vertical Axis',
            'gridlines' => [
                'color' => 'transparent' //set grid line transparent
            ]
        ],
        'hAxis' => ['title' => 'Horizontal Aixs'],
        'curveType' => 'function', //smooth curve or not
        'legend' => ['position' => 'bottom'],
    ]
]);

// ScatterChart
echo GoogleCharts::widget([
    'visualization' => 'ScatterChart',
    'containerId' => 'chart-container',
    'data' => [
        ['Sales', 'Expenses', 'Quarter'],
        [1000, 400, '2015 Q1'],
        [1170, 460, '2015 Q2'],
        [660, 1120, '2015 Q3'],
        [1030, 540, '2015 Q4'],
    ],
    'scriptAfterArrayToDataTable' => "data.setColumnProperty(2, 'role', 'tooltip');",
    'options' => [
        'title' => 'Expenses vs Sales',
    ]
]);

// Gauge
echo GoogleCharts::widget([
    'visualization' => 'Gauge',
    'containerId' => 'chart-container',
    'packages' => 'gauge',
    'data' => [
        ['Label', 'Value'],
        ['Memory', 80],
        ['CPU', 55],
        ['Network', 68],
    ],
    'options' => [
        'width' => 400,
        'height' => 120,
        'redFrom' => 90,
        'redTo' => 100,
        'yellowFrom' => 75,
        'yellowTo' => 90,
        'greenFrom' => 50,
        'greenTo' => 75,
        'minorTicks' => 5
    ]
]);

?>