GoogleCharts/Options/HAxis.php 1 location
|
@@ 69-76 (lines=8) @@
|
66 |
|
/** |
67 |
|
* HAxis constructor. |
68 |
|
*/ |
69 |
|
public function __construct() |
70 |
|
{ |
71 |
|
$this->gridlines = new Gridlines(); |
72 |
|
$this->minorGridlines = new MinorGridlines(); |
73 |
|
$this->textStyle = new MediumTextStyle(); |
74 |
|
$this->titleTextStyle = new TitleTextStyle(); |
75 |
|
$this->viewWindow = new ViewWindow(); |
76 |
|
} |
77 |
|
|
78 |
|
|
79 |
|
/** |
GoogleCharts/Options/VAxis.php 1 location
|
@@ 166-173 (lines=8) @@
|
163 |
|
/** |
164 |
|
* VAxis constructor. |
165 |
|
*/ |
166 |
|
public function __construct() |
167 |
|
{ |
168 |
|
$this->gridlines = new Gridlines(); |
169 |
|
$this->minorGridlines = new MinorGridlines(); |
170 |
|
$this->titleTextStyle = new TitleTextStyle(); |
171 |
|
$this->viewWindow = new ViewWindow(); |
172 |
|
$this->textStyle = new MediumTextStyle(); |
173 |
|
} |
174 |
|
|
175 |
|
/** |
176 |
|
* @return Gridlines |