Passed
Push — master ( 802754...f898ad )
by WEBEWEB
07:59 queued 25s
created

HighchartsZAxisTest::testToArray()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 313
Code Lines 187

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 187
nc 1
nop 0
dl 0
loc 313
rs 8.2857
c 0
b 0
f 0

How to fix   Long Method   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * This file is part of the highcharts-bundle package.
5
 *
6
 * (c) 2017 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Bundle\HighchartsBundle\Tests\API\Chart;
13
14
use PHPUnit_Framework_TestCase;
15
16
/**
17
 * Highcharts z axis test.
18
 *
19
 * @author webeweb <https://github.com/webeweb/>
20
 * @package WBW\Bundle\HighchartsBundle\Tests\API\Chart
21
 * @version 5.0.14
22
 */
23
final class HighchartsZAxisTest extends PHPUnit_Framework_TestCase {
24
25
    /**
26
     * Tests the __construct() method.
27
     *
28
     * @return void
29
     */
30
    public function testConstructor() {
31
32
        $obj1 = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(true);
33
34
        $this->assertEquals(null, $obj1->getAllowDecimals());
35
        $this->assertEquals(null, $obj1->getAlternateGridColor());
36
        $this->assertEquals(null, $obj1->getCategories());
37
        $this->assertEquals(null, $obj1->getCeiling());
38
        $this->assertEquals(null, $obj1->getClassName());
39
        $this->assertEquals(null, $obj1->getCrosshair());
40
        $this->assertEquals(null, $obj1->getDateTimeLabelFormats());
41
        $this->assertEquals(null, $obj1->getDescription());
42
        $this->assertEquals(null, $obj1->getEndOnTick());
43
        $this->assertEquals(null, $obj1->getEvents());
44
        $this->assertEquals(null, $obj1->getFloor());
45
        $this->assertEquals(null, $obj1->getGridLineColor());
46
        $this->assertEquals(null, $obj1->getGridLineDashStyle());
47
        $this->assertEquals(null, $obj1->getGridLineWidth());
48
        $this->assertEquals(null, $obj1->getGridZIndex());
49
        $this->assertEquals(null, $obj1->getId());
50
        $this->assertEquals(null, $obj1->getLabels());
51
        $this->assertEquals(null, $obj1->getLineColor());
52
        $this->assertEquals(null, $obj1->getLineWidth());
53
        $this->assertEquals(null, $obj1->getLinkedTo());
54
        $this->assertEquals(null, $obj1->getMax());
55
        $this->assertEquals(null, $obj1->getMaxPadding());
56
        $this->assertEquals(null, $obj1->getMaxZoom());
57
        $this->assertEquals(null, $obj1->getMin());
58
        $this->assertEquals(null, $obj1->getMinPadding());
59
        $this->assertEquals(null, $obj1->getMinRange());
60
        $this->assertEquals(null, $obj1->getMinTickInterval());
61
        $this->assertEquals(null, $obj1->getMinorGridLineColor());
62
        $this->assertEquals(null, $obj1->getMinorGridLineDashStyle());
63
        $this->assertEquals(null, $obj1->getMinorGridLineWidth());
64
        $this->assertEquals(null, $obj1->getMinorTickColor());
65
        $this->assertEquals(null, $obj1->getMinorTickInterval());
66
        $this->assertEquals(null, $obj1->getMinorTickLength());
67
        $this->assertEquals(null, $obj1->getMinorTickPosition());
68
        $this->assertEquals(null, $obj1->getMinorTickWidth());
69
        $this->assertEquals(null, $obj1->getOffset());
70
        $this->assertEquals(null, $obj1->getOpposite());
71
        $this->assertEquals(null, $obj1->getPlotBands());
72
        $this->assertEquals(null, $obj1->getPlotLines());
73
        $this->assertEquals(null, $obj1->getReversed());
74
        $this->assertEquals(null, $obj1->getShowEmpty());
75
        $this->assertEquals(null, $obj1->getShowFirstLabel());
76
        $this->assertEquals(null, $obj1->getShowLastLabel());
77
        $this->assertEquals(null, $obj1->getSoftMax());
78
        $this->assertEquals(null, $obj1->getSoftMin());
79
        $this->assertEquals(null, $obj1->getStartOfWeek());
80
        $this->assertEquals(null, $obj1->getStartOnTick());
81
        $this->assertEquals(null, $obj1->getTickAmount());
82
        $this->assertEquals(null, $obj1->getTickColor());
83
        $this->assertEquals(null, $obj1->getTickInterval());
84
        $this->assertEquals(null, $obj1->getTickLength());
85
        $this->assertEquals(null, $obj1->getTickPixelInterval());
86
        $this->assertEquals(null, $obj1->getTickPosition());
87
        $this->assertEquals(null, $obj1->getTickPositioner());
88
        $this->assertEquals(null, $obj1->getTickPositions());
89
        $this->assertEquals(null, $obj1->getTickWidth());
90
        $this->assertEquals(null, $obj1->getTickmarkPlacement());
91
        $this->assertEquals(null, $obj1->getTitle());
92
        $this->assertEquals(null, $obj1->getType());
93
        $this->assertEquals(null, $obj1->getUniqueNames());
94
        $this->assertEquals(null, $obj1->getUnits());
95
        $this->assertEquals(null, $obj1->getVisible());
96
97
        $obj0 = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(false);
98
99
        $this->assertEquals(true, $obj0->getAllowDecimals());
100
        $this->assertEquals(null, $obj0->getAlternateGridColor());
101
        $this->assertEquals(null, $obj0->getCategories());
102
        $this->assertEquals(null, $obj0->getCeiling());
103
        $this->assertEquals(null, $obj0->getClassName());
104
        $this->assertEquals(null, $obj0->getCrosshair());
105
        $this->assertEquals(null, $obj0->getDateTimeLabelFormats());
106
        $this->assertEquals(null, $obj0->getDescription());
107
        $this->assertEquals(false, $obj0->getEndOnTick());
108
        $this->assertEquals(null, $obj0->getEvents());
109
        $this->assertEquals(null, $obj0->getFloor());
110
        $this->assertEquals("#e6e6e6", $obj0->getGridLineColor());
111
        $this->assertEquals("Solid", $obj0->getGridLineDashStyle());
112
        $this->assertEquals(0, $obj0->getGridLineWidth());
113
        $this->assertEquals(1, $obj0->getGridZIndex());
114
        $this->assertEquals(null, $obj0->getId());
115
        $this->assertEquals(null, $obj0->getLabels());
116
        $this->assertEquals("#ccd6eb", $obj0->getLineColor());
117
        $this->assertEquals(1, $obj0->getLineWidth());
118
        $this->assertEquals(null, $obj0->getLinkedTo());
119
        $this->assertEquals(null, $obj0->getMax());
120
        $this->assertEquals(0.01, $obj0->getMaxPadding());
121
        $this->assertEquals(null, $obj0->getMaxZoom());
122
        $this->assertEquals(null, $obj0->getMin());
123
        $this->assertEquals(0.01, $obj0->getMinPadding());
124
        $this->assertEquals(null, $obj0->getMinRange());
125
        $this->assertEquals(null, $obj0->getMinTickInterval());
126
        $this->assertEquals("#f2f2f2", $obj0->getMinorGridLineColor());
127
        $this->assertEquals("Solid", $obj0->getMinorGridLineDashStyle());
128
        $this->assertEquals(1, $obj0->getMinorGridLineWidth());
129
        $this->assertEquals("#999999", $obj0->getMinorTickColor());
130
        $this->assertEquals(null, $obj0->getMinorTickInterval());
131
        $this->assertEquals(2, $obj0->getMinorTickLength());
132
        $this->assertEquals("outside", $obj0->getMinorTickPosition());
133
        $this->assertEquals(0, $obj0->getMinorTickWidth());
134
        $this->assertEquals(0, $obj0->getOffset());
135
        $this->assertEquals(false, $obj0->getOpposite());
136
        $this->assertEquals(null, $obj0->getPlotBands());
137
        $this->assertEquals(null, $obj0->getPlotLines());
138
        $this->assertEquals(false, $obj0->getReversed());
139
        $this->assertEquals(true, $obj0->getShowEmpty());
140
        $this->assertEquals(true, $obj0->getShowFirstLabel());
141
        $this->assertEquals(true, $obj0->getShowLastLabel());
142
        $this->assertEquals(null, $obj0->getSoftMax());
143
        $this->assertEquals(null, $obj0->getSoftMin());
144
        $this->assertEquals(1, $obj0->getStartOfWeek());
145
        $this->assertEquals(false, $obj0->getStartOnTick());
146
        $this->assertEquals(null, $obj0->getTickAmount());
147
        $this->assertEquals("#ccd6eb", $obj0->getTickColor());
148
        $this->assertEquals(null, $obj0->getTickInterval());
149
        $this->assertEquals(10, $obj0->getTickLength());
150
        $this->assertEquals(null, $obj0->getTickPixelInterval());
151
        $this->assertEquals("outside", $obj0->getTickPosition());
152
        $this->assertEquals(null, $obj0->getTickPositioner());
153
        $this->assertEquals(null, $obj0->getTickPositions());
154
        $this->assertEquals(1, $obj0->getTickWidth());
155
        $this->assertEquals(null, $obj0->getTickmarkPlacement());
156
        $this->assertEquals(null, $obj0->getTitle());
157
        $this->assertEquals("linear", $obj0->getType());
158
        $this->assertEquals(true, $obj0->getUniqueNames());
159
        $this->assertEquals(null, $obj0->getUnits());
160
        $this->assertEquals(true, $obj0->getVisible());
161
    }
162
163
    /**
164
     * Tests the clear() method.
165
     *
166
     * @return void
167
     */
168
    public function testClear() {
169
170
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(false);
171
172
        $obj->newCrosshair();
173
        $obj->newEvents();
174
        $obj->newLabels();
175
        $obj->newTitle();
176
177
        $obj->clear();
178
179
        $res = ["crosshair" => [], "events" => [], "labels" => [], "title" => []];
180
        $this->assertEquals($res, $obj->toArray());
181
    }
182
183
    /**
184
     * Tests the jsonSerialize() method.
185
     *
186
     * @return void
187
     */
188
    public function testJsonSerialize() {
189
190
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(true);
191
192
        $this->assertEquals([], $obj->jsonSerialize());
193
    }
194
195
    /**
196
     * Tests the newCrosshair() method.
197
     *
198
     * @return void.
199
     */
200
    public function testNewCrosshair() {
201
202
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(false);
203
204
        $res = $obj->newCrosshair();
205
        $this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsCrosshair::class, $res);
206
    }
207
208
    /**
209
     * Tests the newEvents() method.
210
     *
211
     * @return void.
212
     */
213
    public function testNewEvents() {
214
215
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(false);
216
217
        $res = $obj->newEvents();
218
        $this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsEvents::class, $res);
219
    }
220
221
    /**
222
     * Tests the newLabels() method.
223
     *
224
     * @return void.
225
     */
226
    public function testNewLabels() {
227
228
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(false);
229
230
        $res = $obj->newLabels();
231
        $this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsLabels::class, $res);
232
    }
233
234
    /**
235
     * Tests the newTitle() method.
236
     *
237
     * @return void.
238
     */
239
    public function testNewTitle() {
240
241
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(false);
242
243
        $res = $obj->newTitle();
244
        $this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsTitle::class, $res);
245
    }
246
247
    /**
248
     * Tests the toArray() method.
249
     *
250
     * @return void
251
     */
252
    public function testToArray() {
253
254
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\HighchartsZAxis(true);
255
256
        $obj->setAllowDecimals(0);
257
258
        $res1 = ["allowDecimals" => 0];
259
        $this->assertEquals($res1, $obj->toArray());
260
261
        $obj->setAlternateGridColor("e4c3a98e933a4f898d10c74d6b0cc3e9");
262
263
        $res2 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9"];
264
        $this->assertEquals($res2, $obj->toArray());
265
266
        $obj->setCategories(["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"]);
267
268
        $res3 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"]];
269
        $this->assertEquals($res3, $obj->toArray());
270
271
        $obj->setCeiling(9);
272
273
        $res4 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9];
274
        $this->assertEquals($res4, $obj->toArray());
275
276
        $obj->setClassName("6f66e878c62db60568a3487869695820");
277
278
        $res5 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820"];
279
        $this->assertEquals($res5, $obj->toArray());
280
281
        $obj->setCrosshair(new \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsCrosshair());
282
283
        $res6 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => []];
284
        $this->assertEquals($res6, $obj->toArray());
285
286
        $obj->setDateTimeLabelFormats(["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"]);
287
288
        $res7 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"]];
289
        $this->assertEquals($res7, $obj->toArray());
290
291
        $obj->setDescription("67daf92c833c41c95db874e18fcb2786");
292
293
        $res8 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786"];
294
        $this->assertEquals($res8, $obj->toArray());
295
296
        $obj->setEndOnTick(1);
297
298
        $res9 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1];
299
        $this->assertEquals($res9, $obj->toArray());
300
301
        $obj->setEvents(new \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsEvents());
302
303
        $res10 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => []];
304
        $this->assertEquals($res10, $obj->toArray());
305
306
        $obj->setFloor(78);
307
308
        $res11 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78];
309
        $this->assertEquals($res11, $obj->toArray());
310
311
        $obj->setGridLineColor("fa817119e014d62cd3eeb4aef3821870");
312
313
        $res12 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870"];
314
        $this->assertEquals($res12, $obj->toArray());
315
316
        $obj->setGridLineDashStyle("LongDashDotDot");
317
318
        $res13 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot"];
319
        $this->assertEquals($res13, $obj->toArray());
320
321
        $obj->setGridLineWidth(21);
322
323
        $res14 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21];
324
        $this->assertEquals($res14, $obj->toArray());
325
326
        $obj->setGridZIndex(15);
327
328
        $res15 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15];
329
        $this->assertEquals($res15, $obj->toArray());
330
331
        $obj->setId("b80bb7740288fda1f201890375a60c8f");
332
333
        $res16 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f"];
334
        $this->assertEquals($res16, $obj->toArray());
335
336
        $obj->setLabels(new \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsLabels());
337
338
        $res17 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => []];
339
        $this->assertEquals($res17, $obj->toArray());
340
341
        $obj->setLineColor("c2580eebfdbdb9fc629f50cc147c3f63");
342
343
        $res18 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63"];
344
        $this->assertEquals($res18, $obj->toArray());
345
346
        $obj->setLineWidth(4);
347
348
        $res19 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4];
349
        $this->assertEquals($res19, $obj->toArray());
350
351
        $obj->setLinkedTo(60);
352
353
        $res20 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60];
354
        $this->assertEquals($res20, $obj->toArray());
355
356
        $obj->setMax(84);
357
358
        $res21 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84];
359
        $this->assertEquals($res21, $obj->toArray());
360
361
        $obj->setMaxPadding(6);
362
363
        $res22 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6];
364
        $this->assertEquals($res22, $obj->toArray());
365
366
        $obj->setMaxZoom(71);
367
368
        $res23 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71];
369
        $this->assertEquals($res23, $obj->toArray());
370
371
        $obj->setMin(50);
372
373
        $res24 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50];
374
        $this->assertEquals($res24, $obj->toArray());
375
376
        $obj->setMinPadding(49);
377
378
        $res25 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49];
379
        $this->assertEquals($res25, $obj->toArray());
380
381
        $obj->setMinRange(67);
382
383
        $res26 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67];
384
        $this->assertEquals($res26, $obj->toArray());
385
386
        $obj->setMinTickInterval(10);
387
388
        $res27 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10];
389
        $this->assertEquals($res27, $obj->toArray());
390
391
        $obj->setMinorGridLineColor("02d67903f43b194a260f6e05958c6f60");
392
393
        $res28 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60"];
394
        $this->assertEquals($res28, $obj->toArray());
395
396
        $obj->setMinorGridLineDashStyle("LongDashDotDot");
397
398
        $res29 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot"];
399
        $this->assertEquals($res29, $obj->toArray());
400
401
        $obj->setMinorGridLineWidth(26);
402
403
        $res30 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26];
404
        $this->assertEquals($res30, $obj->toArray());
405
406
        $obj->setMinorTickColor("58f14daeca50e29794caa541286c45b5");
407
408
        $res31 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5"];
409
        $this->assertEquals($res31, $obj->toArray());
410
411
        $obj->setMinorTickInterval("bec8a7be3cd5e2a8eff4a3ee2f5c7e2d");
412
413
        $res32 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d"];
414
        $this->assertEquals($res32, $obj->toArray());
415
416
        $obj->setMinorTickLength(48);
417
418
        $res33 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48];
419
        $this->assertEquals($res33, $obj->toArray());
420
421
        $obj->setMinorTickPosition("outside");
422
423
        $res34 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside"];
424
        $this->assertEquals($res34, $obj->toArray());
425
426
        $obj->setMinorTickWidth(83);
427
428
        $res35 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83];
429
        $this->assertEquals($res35, $obj->toArray());
430
431
        $obj->setOffset(75);
432
433
        $res36 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75];
434
        $this->assertEquals($res36, $obj->toArray());
435
436
        $obj->setOpposite(1);
437
438
        $res37 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1];
439
        $this->assertEquals($res37, $obj->toArray());
440
441
        $obj->setPlotBands(["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"]);
442
443
        $res38 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"]];
444
        $this->assertEquals($res38, $obj->toArray());
445
446
        $obj->setPlotLines(["plotLines" => "ca27823684c96816234d7d97344db89c"]);
447
448
        $res39 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"]];
449
        $this->assertEquals($res39, $obj->toArray());
450
451
        $obj->setReversed(0);
452
453
        $res40 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0];
454
        $this->assertEquals($res40, $obj->toArray());
455
456
        $obj->setShowEmpty(1);
457
458
        $res41 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1];
459
        $this->assertEquals($res41, $obj->toArray());
460
461
        $obj->setShowFirstLabel(0);
462
463
        $res42 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0];
464
        $this->assertEquals($res42, $obj->toArray());
465
466
        $obj->setShowLastLabel(1);
467
468
        $res43 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1];
469
        $this->assertEquals($res43, $obj->toArray());
470
471
        $obj->setSoftMax(27);
472
473
        $res44 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27];
474
        $this->assertEquals($res44, $obj->toArray());
475
476
        $obj->setSoftMin(74);
477
478
        $res45 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74];
479
        $this->assertEquals($res45, $obj->toArray());
480
481
        $obj->setStartOfWeek(47);
482
483
        $res46 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47];
484
        $this->assertEquals($res46, $obj->toArray());
485
486
        $obj->setStartOnTick(1);
487
488
        $res47 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1];
489
        $this->assertEquals($res47, $obj->toArray());
490
491
        $obj->setTickAmount(82);
492
493
        $res48 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82];
494
        $this->assertEquals($res48, $obj->toArray());
495
496
        $obj->setTickColor("3569a8266538a625569574b2c96e237c");
497
498
        $res49 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c"];
499
        $this->assertEquals($res49, $obj->toArray());
500
501
        $obj->setTickInterval(15);
502
503
        $res50 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15];
504
        $this->assertEquals($res50, $obj->toArray());
505
506
        $obj->setTickLength(58);
507
508
        $res51 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58];
509
        $this->assertEquals($res51, $obj->toArray());
510
511
        $obj->setTickPixelInterval(22);
512
513
        $res52 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22];
514
        $this->assertEquals($res52, $obj->toArray());
515
516
        $obj->setTickPosition("outside");
517
518
        $res53 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside"];
519
        $this->assertEquals($res53, $obj->toArray());
520
521
        $obj->setTickPositioner("c6a22a267ac93652e3443f821bb369bd");
522
523
        $res54 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd"];
524
        $this->assertEquals($res54, $obj->toArray());
525
526
        $obj->setTickPositions(["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"]);
527
528
        $res55 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"]];
529
        $this->assertEquals($res55, $obj->toArray());
530
531
        $obj->setTickWidth(25);
532
533
        $res56 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"], "tickWidth" => 25];
534
        $this->assertEquals($res56, $obj->toArray());
535
536
        $obj->setTickmarkPlacement("between");
537
538
        $res57 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"], "tickWidth" => 25, "tickmarkPlacement" => "between"];
539
        $this->assertEquals($res57, $obj->toArray());
540
541
        $obj->setTitle(new \WBW\Bundle\HighchartsBundle\API\Chart\ZAxis\HighchartsTitle());
542
543
        $res58 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"], "tickWidth" => 25, "tickmarkPlacement" => "between", "title" => []];
544
        $this->assertEquals($res58, $obj->toArray());
545
546
        $obj->setType("category");
547
548
        $res59 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"], "tickWidth" => 25, "tickmarkPlacement" => "between", "title" => [], "type" => "category"];
549
        $this->assertEquals($res59, $obj->toArray());
550
551
        $obj->setUniqueNames(1);
552
553
        $res60 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"], "tickWidth" => 25, "tickmarkPlacement" => "between", "title" => [], "type" => "category", "uniqueNames" => 1];
554
        $this->assertEquals($res60, $obj->toArray());
555
556
        $obj->setUnits(["units" => "b98b3dfbd27e710e6c3ceeae58770b52"]);
557
558
        $res61 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"], "tickWidth" => 25, "tickmarkPlacement" => "between", "title" => [], "type" => "category", "uniqueNames" => 1, "units" => ["units" => "b98b3dfbd27e710e6c3ceeae58770b52"]];
559
        $this->assertEquals($res61, $obj->toArray());
560
561
        $obj->setVisible(1);
562
563
        $res62 = ["allowDecimals" => 0, "alternateGridColor" => "e4c3a98e933a4f898d10c74d6b0cc3e9", "categories" => ["categories" => "b0b5ccb4a195a07fd3eed14affb8695f"], "ceiling" => 9, "className" => "6f66e878c62db60568a3487869695820", "crosshair" => [], "dateTimeLabelFormats" => ["dateTimeLabelFormats" => "e9db9b38c23127a66165e1d8cefd5ad8"], "description" => "67daf92c833c41c95db874e18fcb2786", "endOnTick" => 1, "events" => [], "floor" => 78, "gridLineColor" => "fa817119e014d62cd3eeb4aef3821870", "gridLineDashStyle" => "LongDashDotDot", "gridLineWidth" => 21, "gridZIndex" => 15, "id" => "b80bb7740288fda1f201890375a60c8f", "labels" => [], "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 4, "linkedTo" => 60, "max" => 84, "maxPadding" => 6, "maxZoom" => 71, "min" => 50, "minPadding" => 49, "minRange" => 67, "minTickInterval" => 10, "minorGridLineColor" => "02d67903f43b194a260f6e05958c6f60", "minorGridLineDashStyle" => "LongDashDotDot", "minorGridLineWidth" => 26, "minorTickColor" => "58f14daeca50e29794caa541286c45b5", "minorTickInterval" => "bec8a7be3cd5e2a8eff4a3ee2f5c7e2d", "minorTickLength" => 48, "minorTickPosition" => "outside", "minorTickWidth" => 83, "offset" => 75, "opposite" => 1, "plotBands" => ["plotBands" => "a6eb9963a4bde85c1ff1d28632fe012d"], "plotLines" => ["plotLines" => "ca27823684c96816234d7d97344db89c"], "reversed" => 0, "showEmpty" => 1, "showFirstLabel" => 0, "showLastLabel" => 1, "softMax" => 27, "softMin" => 74, "startOfWeek" => 47, "startOnTick" => 1, "tickAmount" => 82, "tickColor" => "3569a8266538a625569574b2c96e237c", "tickInterval" => 15, "tickLength" => 58, "tickPixelInterval" => 22, "tickPosition" => "outside", "tickPositioner" => "c6a22a267ac93652e3443f821bb369bd", "tickPositions" => ["tickPositions" => "8c5d1b19e77eea01652836867fe6d741"], "tickWidth" => 25, "tickmarkPlacement" => "between", "title" => [], "type" => "category", "uniqueNames" => 1, "units" => ["units" => "b98b3dfbd27e710e6c3ceeae58770b52"], "visible" => 1];
564
        $this->assertEquals($res62, $obj->toArray());
565
    }
566
567
}
568