-
Notifications
You must be signed in to change notification settings - Fork 3
/
Histogram.php
180 lines (162 loc) · 5.19 KB
/
Histogram.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
namespace bsadnu\googlecharts;
use Yii;
use yii\base\Widget;
use yii\helpers\Html;
use yii\helpers\Json;
use yii\web\View;
use bsadnu\googlecharts\GoogleJsApiAsset;
/**
* Histogram widget.
* A histogram is a chart that groups numeric data into bins, displaying the bins as segmented columns.
* They're used to depict the distribution of a dataset: how often values fall into ranges.
* Google Charts automatically chooses the number of bins for you. All bins are equal width and have a height proportional to the number of data points in the bin.
* In other respects, histograms are similar to column charts.
*
* @author Stanislav Bannikov <[email protected]>
*/
class Histogram extends Widget
{
/**
* @var string unique id of histogram
*/
public $id;
/**
* @var array table of data
* Example:
* [
* ['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]
* ]
*/
public $data = [];
/**
* @var array options
* Example:
* [
* '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
* ]
* ]
* ]
*/
public $options = [];
/**
* Initializes the widget.
*/
public function init()
{
parent::init();
$view = Yii::$app->getView();
$this->registerAssets();
$view->registerJs($this->getJs(), View::POS_END);
}
/**
* Renders the widget.
*/
public function run()
{
$content = Html::tag('div', null, ['id'=> $this->id]);
return $content;
}
/**
* Registers necessary assets.
*/
public function registerAssets()
{
$view = $this->getView();
GoogleJsApiAsset::register($view);
}
/**
* Return necessary javascript.
*/
private function getJs()
{
$uniqueInt = mt_rand(1, 999999);
$js = "
google.load('visualization', '1', {packages:['corechart']});
google.setOnLoadCallback(drawHistogram". $uniqueInt .");
";
$js .= "
function drawHistogram". $uniqueInt ."() {
var data". $uniqueInt ." = google.visualization.arrayToDataTable(". Json::encode($this->data) .");
var options_histogram". $uniqueInt ." = ". Json::encode($this->options) .";
var histogram". $uniqueInt ." = new google.visualization.Histogram($('#". $this->id ."')[0]);
histogram". $uniqueInt .".draw(data". $uniqueInt .", options_histogram". $uniqueInt .");
}
";
$js .= "
$(function () {
$(window).on('resize', resize);
$('.sidebar-control').on('click', resize);
function resize() {
drawHistogram". $uniqueInt ."();
}
});
";
return $js;
}
}