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

HighchartsYAxisTest   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 612
Duplicated Lines 0 %

Importance

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