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

HighchartsXAxisTest::testConstructor()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 133
Code Lines 128

Duplication

Lines 0
Ratio 0 %

Importance

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

How to fix   Long Method   

Long Method

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

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

Commonly applied refactorings include:

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