-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPieChart.php
152 lines (128 loc) · 4.06 KB
/
PieChart.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
<?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;
/**
* Pie chart widget.
* A pie chart is a divided into sectors, illustrating numerical proportion.
* In a pie chart, the arc length of each sector (and consequently its central angle and area), is proportional to the quantity it represents.
* While it is named for its resemblance to a pie which has been sliced, there are variations on the way it can be presented.
*
* @author Stanislav Bannikov <[email protected]>
*/
class PieChart extends Widget
{
/**
* @var string unique id of chart
*/
public $id;
/**
* @var array table of data
* Example:
* [
* ['Major', 'Degrees'],
* ['Business', 256070],
* ['Education', 108034],
* ['Social Sciences & History', 127101],
* ['Health', 81863],
* ['Psychology', 74194]
* ]
*/
public $data = [];
/**
* @var array table of extra data necessary for inner circle chart types
* Example:
* [
* ['Major', 'Degrees'],
* ['Business', 358293],
* ['Education', 101265],
* ['Social Sciences & History', 172780],
* ['Health', 129634],
* ['Psychology', 97216]
* ]
*/
public $extraData = [];
/**
* @var array options
* Example:
* [
* 'fontName' => 'Verdana',
* 'height' => 300,
* 'width' => 500,
* 'chartArea' => [
* 'left' => 50,
* 'width' => '90%',
* 'height' => '90%'
* ],
* 'diff' => [
* 'oldData' => [
* 'inCenter' => false
* ]
* ]
* ]
*/
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(drawChart". $uniqueInt .");
";
if (!empty($this->extraData)) {
$js .= "
function drawChart". $uniqueInt ."() {
var oldData". $uniqueInt ." = google.visualization.arrayToDataTable(". Json::encode($this->data) .");
var newData". $uniqueInt ." = google.visualization.arrayToDataTable(". Json::encode($this->extraData) .");
var options". $uniqueInt ." = ". Json::encode($this->options) .";
var pie". $uniqueInt ." = new google.visualization.PieChart($('#". $this->id ."')[0]);
var diffData". $uniqueInt ." = pie". $uniqueInt .".computeDiff(oldData". $uniqueInt .", newData". $uniqueInt .");
pie". $uniqueInt .".draw(diffData". $uniqueInt .", options". $uniqueInt .");
}
";
} else {
$js .= "
function drawChart". $uniqueInt ."() {
var data". $uniqueInt ." = google.visualization.arrayToDataTable(". Json::encode($this->data) .");
var options". $uniqueInt ." = ". Json::encode($this->options) .";
var pie". $uniqueInt ." = new google.visualization.PieChart($('#". $this->id ."')[0]);
pie". $uniqueInt .".draw(data". $uniqueInt .", options". $uniqueInt .");
}
";
}
return $js;
}
}