bsadnu / yii2-googlecharts
Google Charts Extension for Yii 2 framework
Installs: 32 080
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 2
Forks: 3
Open Issues: 1
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-09 19:35:31 UTC
README
This extension contains a set of chart widgets based on Google Charts API.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist bsadnu/yii2-googlecharts "*"
or add
"bsadnu/yii2-googlecharts": "*"
to the require section of your composer.json.
Usage
To use any of these widgets, simply add the following code in your view.
Column Chart Example
... use bsadnu\googlecharts\ColumnChart; ...
- Simple Column Chart
<?= ColumnChart::widget([ 'id' => 'my-column-chart-id', 'data' => [ ['Year', 'Sales', 'Expenses'], ['2013', 1000, 400], ['2014', 1170, 460], ['2015', 660, 1120], ['2016', 1030, 540] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'title' => 'Sales and Expenses', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
- Stacked Column Chart
<?= ColumnChart::widget([ 'id' => 'my-stacked-column-chart-id', 'data' => [ ['Genre', 'Fantasy & Sci Fi', 'Romance', 'Mystery/Crime', 'General', 'Western', 'Literature'], ['2000', 20, 30, 35, 40, 45, 30], ['2005', 14, 20, 25, 30, 48, 30], ['2010', 10, 24, 20, 32, 18, 5], ['2015', 15, 25, 30, 35, 20, 15], ['2020', 16, 22, 23, 30, 16, 9], ['2025', 12, 26, 20, 40, 20, 30], ['2030', 28, 19, 29, 30, 12, 13] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'isStacked' => true, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'title' => 'Sales and Expenses', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
- Trendlines Column Chart
<?= ColumnChart::widget([ 'id' => 'my-column-trendlines-chart-id', 'data' => [ ['Week', 'Bugs', 'Tests'], [1, 175, 10], [2, 159, 20], [3, 126, 35], [4, 129, 40], [5, 108, 60], [6, 92, 70], [7, 55, 72], [8, 50, 97] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 450, 'curveType' => 'function', 'fontSize' => 12, 'chartArea' => [ 'left' => 50, 'width' => '92%', 'height' => 350 ], 'hAxis' => [ 'format' => '#', 'viewWindow' => [ 'min' => 0, 'max' => 9 ], 'gridlines' => [ 'count' => 10 ] ], 'vAxis' => [ 'title' => 'Bugs and tests', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'colors' => [ '#6D4C41', '#FB8C00' ], 'trendlines' => [ 0 => [ 'labelInLegend' => 'Bug line', 'visibleInLegend' => true ], 1 => [ 'labelInLegend' => 'Test line', 'visibleInLegend' => true ] ], 'legend' => [ 'position' => 'top', 'alignment' => 'end', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
- Diff Column Chart
<?= ColumnChart::widget([ 'id' => 'my-column-diff-chart-id', 'data' => [ ['Name', 'Popularity'], ['Cesar', 425], ['Rachel', 420], ['Patrick', 290], ['Eric', 620], ['Eugene', 520], ['John', 460], ['Greg', 420], ['Matt', 410] ], 'extraData' => [ ['Name', 'Popularity'], ['Cesar', 307], ['Rachel', 360], ['Patrick', 200], ['Eric', 550], ['Eugene', 460], ['John', 320], ['Greg', 390], ['Matt', 360] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'colors' => [ '#4CAF50' ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'hAxis' => [ 'format' => '#', 'viewWindow' => [ 'min' => 0, 'max' => 9 ], 'gridlines' => [ 'count' => 10 ] ], 'vAxis' => [ 'title' => 'Popularity', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'end', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
Bar Chart Example
... use bsadnu\googlecharts\BarChart; ...
- Simple Bar Chart
<?= BarChart::widget([ 'id' => 'my-bar-chart-id', 'data' => [ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
- Stacked Bar Chart
<?= BarChart::widget([ 'id' => 'my-stacked-bar-chart-id', 'data' => [ ['Genre', 'Fantasy & Sci Fi', 'Romance', 'Mystery/Crime', 'General', 'Western', 'Literature'], ['2000', 20, 30, 35, 40, 45, 30], ['2005', 14, 20, 25, 30, 48, 30], ['2010', 10, 24, 20, 32, 18, 5], ['2015', 15, 25, 30, 35, 20, 15], ['2020', 16, 22, 23, 30, 16, 9], ['2025', 12, 26, 20, 40, 20, 30], ['2030', 28, 19, 29, 30, 12, 13] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'isStacked' => true, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'hAxis' => [ 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
Histogram Example
... use bsadnu\googlecharts\Histogram; ...
<?= Histogram::widget([ 'id' => 'my-simple-histogram-id', 'data' => [ ['Dinosaur', 'Length'], ['Acrocanthosaurus (top-spined lizard)', 12.2], ['Albertosaurus (Alberta lizard)', 9.1], ['Allosaurus (other lizard)', 12.2], ['Apatosaurus (deceptive lizard)', 22.9], ['Archaeopteryx (ancient wing)', 0.9], ['Argentinosaurus (Argentina lizard)', 36.6], ['Baryonyx (heavy claws)', 9.1], ['Brachiosaurus (arm lizard)', 30.5], ['Ceratosaurus (horned lizard)', 6.1], ['Coelophysis (hollow form)', 2.7], ['Compsognathus (elegant jaw)', 0.9], ['Deinonychus (terrible claw)', 2.7], ['Diplodocus (double beam)', 27.1], ['Dromicelomimus (emu mimic)', 3.4], ['Gallimimus (fowl mimic)', 5.5], ['Mamenchisaurus (Mamenchi lizard)', 21.0], ['Megalosaurus (big lizard)', 7.9], ['Microvenator (small hunter)', 1.2], ['Ornithomimus (bird mimic)', 4.6], ['Oviraptor (egg robber)', 1.5], ['Plateosaurus (flat lizard)', 7.9], ['Sauronithoides (narrow-clawed lizard)', 2.0], ['Seismosaurus (tremor lizard)', 45.7], ['Spinosaurus (spiny lizard)', 12.2], ['Supersaurus (super lizard)', 30.5], ['Tyrannosaurus (tyrant lizard)', 15.2], ['Ultrasaurus (ultra lizard)', 30.5], ['Velociraptor (swift robber)', 1.8] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'isStacked' => true, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'title' => 'Dinosaur length', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'hAxis' => [ 'gridlines' => [ 'color' => '#e5e5e5' ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
Combo Chart Example
... use bsadnu\googlecharts\ComboChart; ...
<?= ComboChart::widget([ 'id' => 'my-combo-chart-id', 'data' => [ ['Month', 'Bolivia', 'Ecuador', 'Madagascar', 'Papua New Guinea', 'Rwanda', 'Average'], ['2004/05', 165, 938, 522, 998, 450, 614.6], ['2005/06', 135, 1120, 599, 1268, 288, 682], ['2006/07', 157, 1167, 587, 807, 397, 623], ['2007/08', 139, 1110, 615, 968, 215, 609.4], ['2008/09', 136, 691, 629, 1026, 366, 569.6] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'seriesType' => 'bars', 'series' => [ 5 => [ 'type' => 'line', 'pointSize' => 5 ] ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
Line Chart Example
... use bsadnu\googlecharts\LineChart; ...
- Simple Line Chart
<?= LineChart::widget([ 'id' => 'my-simple-line-chart-id', 'data' => [ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'curveType' => 'function', 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'pointSize' => 4, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'title' => 'Sales and Expenses', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
- Line Intervals Chart
<?= LineChart::widget([ 'id' => 'my-line-intervals-id', 'isIntervalType' => true, 'data' => [ ['a', 100, 90, 110, 85, 96, 104, 120], ['b', 120, 95, 130, 90, 113, 124, 140], ['c', 130, 105, 140, 100, 117, 133, 139], ['d', 90, 85, 95, 85, 88, 92, 95], ['e', 70, 74, 63, 67, 69, 70, 72], ['f', 30, 39, 22, 21, 28, 34, 40], ['g', 80, 77, 83, 70, 77, 85, 90], ['h', 100, 90, 110, 85, 95, 102, 110] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'curveType' => 'function', 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'lineWidth' => 3, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'series' => [ [ 'color' => '#EF5350' ] ], 'intervals' => [ 'style' => 'line' ], 'pointSize' => 5, 'vAxis' => [ 'title' => 'Number values', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => 'none' ] ]) ?>
- Line Intervals Area Chart
<?= LineChart::widget([ 'id' => 'my-area-intervals-id', 'isIntervalType' => true, 'data' => [ ['a', 100, 90, 110, 85, 96, 104, 120], ['b', 120, 95, 130, 90, 113, 124, 140], ['c', 130, 105, 140, 100, 117, 133, 139], ['d', 90, 85, 95, 85, 88, 92, 95], ['e', 70, 74, 63, 67, 69, 70, 72], ['f', 30, 39, 22, 21, 28, 34, 40], ['g', 80, 77, 83, 70, 77, 85, 90], ['h', 100, 90, 110, 85, 95, 102, 110] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'curveType' => 'function', 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'lineWidth' => 2, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'series' => [ [ 'color' => '#43A047' ] ], 'intervals' => [ 'style' => 'area' ], 'pointSize' => 5, 'vAxis' => [ 'title' => 'Number values', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => 'none' ] ]) ?>
Area Chart Example
... use bsadnu\googlecharts\AreaChart; ...
- Simple Area Chart
<?= AreaChart::widget([ 'id' => 'my-simple-area-chart-id', 'data' => [ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'curveType' => 'function', 'fontSize' => 12, 'areaOpacity' => 0.4, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'pointSize' => 4, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'title' => 'Sales and Expenses', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridarea' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'end', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
- Stacked Area Chart
<?= AreaChart::widget([ 'id' => 'my-staked-area-chart-id', 'data' => [ ['Year', 'Cars', 'Trucks', 'Drones', 'Segways'], ['2013', 870, 460, 310, 220], ['2014', 460, 720, 220, 460], ['2015', 930, 640, 340, 330], ['2016', 1000, 400, 180, 500] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'curveType' => 'function', 'fontSize' => 12, 'areaOpacity' => 0.4, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'isStacked' => true, 'pointSize' => 4, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'lineWidth' => 1.5, 'vAxis' => [ 'title' => 'Number values', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'end', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
Stepped Area Chart Example
... use bsadnu\googlecharts\SteppedAreaChart; ...
<?= SteppedAreaChart::widget([ 'id' => 'my-stepped-area-chart-id', 'data' => [ ['Director (Year)', 'Rotten Tomatoes', 'IMDB'], ['Alfred Hitchcock (1935)', 8.4, 7.9], ['Ralph Thomas (1959)', 6.9, 6.5], ['Don Sharp (1978)', 6.5, 6.4], ['James Hawes (2008)', 4.4, 6.2] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 400, 'isStacked' => true, 'fontSize' => 12, 'chartArea' => [ 'left' => '5%', 'width' => '90%', 'height' => 350 ], 'lineWidth' => 1, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'pointSize' => 5, 'vAxis' => [ 'title' => 'Accumulated Rating', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
Pie Chart Example
... use bsadnu\googlecharts\PieChart; ...
<?= PieChart::widget([ 'id' => 'my-pie-chart-id', 'data' => [ ['Major', 'Degrees'], ['Business', 256070], ['Education', 108034], ['Social Sciences & History', 127101], ['Health', 81863], ['Psychology', 74194] ], 'extraData' => [ ['Major', 'Degrees'], ['Business', 358293], ['Education', 101265], ['Social Sciences & History', 172780], ['Health', 129634], ['Psychology', 97216] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 300, 'width' => 500, 'chartArea' => [ 'left' => 50, 'width' => '90%', 'height' => '90%' ], 'diff' => [ 'extraData' => [ 'inCenter' => false ] ] ] ]) ?>
Sankey Diagram Example
... use bsadnu\googlecharts\Sankey; ...
<?= Sankey::widget([ 'id' => 'my-sankey-diagram-id', 'data' => [ [ 'Brazil', 'Portugal', 4 ], [ 'Brazil', 'France', 1 ], [ 'Brazil', 'Spain', 1 ], [ 'Brazil', 'England', 1 ], [ 'Canada', 'Portugal', 1 ], [ 'Canada', 'France', 4 ], [ 'Canada', 'England', 1 ], [ 'Mexico', 'Portugal', 1 ], [ 'Mexico', 'France', 1 ], [ 'Mexico', 'Spain', 4 ], [ 'Mexico', 'England', 1 ], [ 'USA', 'Portugal', 1 ], [ 'USA', 'France', 1 ], [ 'USA', 'Spain', 1 ], [ 'USA', 'England', 4 ], [ 'Portugal', 'Angola', 2 ], [ 'Portugal', 'Senegal', 1 ], [ 'Portugal', 'Morocco', 1 ], [ 'Portugal', 'South Africa', 3 ], [ 'France', 'Angola', 1 ], [ 'France', 'Mali', 3 ], [ 'France', 'Morocco', 3 ], [ 'France', 'South Africa', 1 ], [ 'Spain', 'Senegal', 1 ], [ 'Spain', 'Morocco', 3 ], [ 'Spain', 'South Africa', 1 ], [ 'England', 'Angola', 1 ], [ 'England', 'Senegal', 1 ], [ 'England', 'Morocco', 2 ], [ 'England', 'South Africa', 4 ], [ 'South Africa', 'India', 1 ], [ 'South Africa', 'Japan', 3 ], [ 'Angola', 'China', 2 ], [ 'Angola', 'India', 1 ], [ 'Angola', 'Japan', 3 ], [ 'Senegal', 'China', 2 ], [ 'Senegal', 'India', 1 ], [ 'Senegal', 'Japan', 3 ], [ 'Mali', 'China', 2 ], [ 'Mali', 'India', 1 ], [ 'Mali', 'Japan', 3 ], [ 'Morocco', 'China', 2 ], [ 'Morocco', 'India', 1 ], [ 'Morocco', 'Japan', 3 ], [ 'Morocco', 'Senegal', 1 ] ], 'options' => [ 'height' => 400, 'sankey' => [ 'link' => [ 'color' => [ 'fill' => '#eee', 'fillOpacity' => 0.3 ] ], 'node' => [ 'width' => 8, 'nodePadding' => 80, 'label' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ] ] ] ]) ?>
Geo Chart Example
... use bsadnu\googlecharts\GeoChart; ...
<?= GeoChart::widget([ 'id' => 'my-regions-geo-chart-id', 'data' => [ ['Country', 'Popularity'], ['Germany', 200], ['United States', 300], ['Brazil', 400], ['Canada', 500], ['France', 600], ['RU', 700] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 500, 'width' => '100%', 'fontSize' => 12, 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ] ] ]) ?>
Bubble Chart Example
... use bsadnu\googlecharts\BubbleChart; ...
- Simple Bubble Chart
<?= BubbleChart::widget([ 'id' => 'my-simple-bubble-chart-id', 'data' => [ ['ID', 'Life Expectancy', 'Fertility Rate', 'Region'], ['CAN', 82.66, 1.67, 'North America'], ['DEU', 79.84, 1.36, 'Europe'], ['DNK', 70.6, 1.84, 'Europe'], ['EGY', 72.73, 2.78, 'Middle East'], ['GBR', 75.05, 2, 'Europe'], ['IRN', 72.49, 0.7, 'Middle East'], ['IRQ', 68.09, 4.77, 'Middle East'], ['ISR', 81.55, 3.96, 'Middle East'], ['RUS', 68.6, 1.54, 'Europe'], ['USA', 78.09, 3.05, 'North America'] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 450, 'fontSize' => 12, 'chartArea' => [ 'left' => 50, 'width' => '90%', 'height' => 400 ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'title' => 'Fertility Rate', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'bubble' => [ 'textStyle' => [ 'auraColor' => 'none', 'color' => '#fff' ], 'stroke' => '#fff' ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ] ] ]) ?>
- Bubble Chart Color by Numbers
<?= BubbleChart::widget([ 'id' => 'my-colnumb-bubble-chart-id', 'data' => [ ['ID', 'X', 'Y', 'Temperature'], ['', 80, 167, 120], ['', 79, 136, 130], ['', 78, 184, 50], ['', 72, 278, 230], ['', 81, 200, 210], ['', 72, 170, 100], ['', 68, 477, 80] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 450, 'fontSize' => 12, 'chartArea' => [ 'left' => 50, 'width' => '90%', 'height' => 400 ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'vAxis' => [ 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0 ], 'bubble' => [ 'textStyle' => [ 'fontSize' => 11 ], 'stroke' => '#fff' ] ] ]) ?>
Scatter Chart Example
... use bsadnu\googlecharts\ScatterChart; ...
- Simple Scatter Chart
<?= ScatterChart::widget([ 'id' => 'my-scatter-simple-chart-id', 'data' => [ ['Age', 'Weight'], [ 8, 12], [ 4, 6], [ 11, 14], [ 4, 5], [ 3, 3.5], [ 6.5, 7], [ 7, 10], [ 6.5, 12], [ 6, 13], [ 8, 16], [ 12, 17], [ 18, 8], [ 18, 9], [ 16, 12] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 450, 'fontSize' => 12, 'chartArea' => [ 'left' => 50, 'width' => '90%', 'height' => 400 ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'hAxis' => [ 'minValue' => 0, 'maxValue' => 15 ], 'vAxis' => [ 'title' => 'Weight', 'titleTextStyle' => [ 'fontSize' => 13, 'italic' => false ], 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 10 ], 'minValue' => 0, 'maxValue' => 15 ], 'legend' => 'none', 'pointSize' => 10, 'colors' => [ '#E53935' ] ] ]) ?>
- Diff Scatter Chart
<?= ScatterChart::widget([ 'id' => 'my-scatter-diff-chart-id', 'data' => [ ['', 'Medicine 1', 'Medicine 2'], [23, null, 12], [9, null, 39], [15, null, 28], [37, null, 30], [21, null, 14], [12, null, 18], [29, null, 34], [ 8, null, 12], [38, null, 28], [35, null, 12], [26, null, 10], [10, null, 29], [11, null, 10], [27, null, 38], [39, null, 17], [34, null, 20], [38, null, 5], [33, null, 27], [23, null, 39], [12, null, 10], [ 8, 15, null], [39, 15, null], [27, 31, null], [30, 24, null], [31, 39, null], [35, 6, null], [ 5, 5, null], [19, 39, null], [22, 8, null], [19, 23, null], [27, 20, null], [11, 6, null], [34, 33, null], [38, 8, null], [39, 29, null], [13, 23, null], [13, 36, null], [39, 6, null], [14, 37, null], [13, 39, null] ], 'extraData' => [ ['', 'Medicine 1', 'Medicine 2'], [22, null, 12], [7, null, 40], [14, null, 31], [37, null, 30], [18, null, 17], [9, null, 20], [26, null, 36], [5, null, 13], [36, null, 30], [35, null, 15], [24, null, 12], [7, null, 31], [10, null, 12], [24, null, 40], [37, null, 18], [32, null, 21], [35, null, 7], [31, null, 30], [21, null, 42], [12, null, 10], [10, 13, null], [40, 12, null], [28, 29, null], [32, 22, null], [31, 37, null], [38, 5, null], [6, 4, null], [21, 36, null], [22, 8, null], [21, 22, null], [28, 17, null], [12, 5, null], [37, 30, null], [41, 7, null], [41, 27, null], [15, 20, null], [14, 36, null], [42, 3, null], [14, 37, null], [15, 36, null] ], 'options' => [ 'fontName' => 'Verdana', 'height' => 450, 'fontSize' => 12, 'chartArea' => [ 'left' => 50, 'width' => '90%', 'height' => 400 ], 'tooltip' => [ 'textStyle' => [ 'fontName' => 'Verdana', 'fontSize' => 13 ] ], 'hAxis' => [ 'minValue' => 0 ], 'vAxis' => [ 'gridlines' => [ 'color' => '#e5e5e5', 'count' => 5 ], 'minValue' => 0 ], 'legend' => [ 'position' => 'top', 'alignment' => 'center', 'textStyle' => [ 'fontSize' => 12 ] ], 'diff' => [ 'oldData' => [ 'opacity' => 0.5 ] ] ] ]) ?>
License
yii2-googlecharts is released under the BSD 2-Clause License. See the bundled LICENSE for details.