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

HighchartsAreasplinerangeTest::testToArray()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 273
Code Lines 163

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 163
nc 1
nop 0
dl 0
loc 273
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\Series;
13
14
use PHPUnit_Framework_TestCase;
15
16
/**
17
 * Highcharts areasplinerange test.
18
 *
19
 * @author webeweb <https://github.com/webeweb/>
20
 * @package WBW\Bundle\HighchartsBundle\Tests\API\Chart\Series
21
 * @version 5.0.14
22
 */
23
final class HighchartsAreasplinerangeTest 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\Series\HighchartsAreasplinerange(true);
33
34
        $this->assertEquals(null, $obj1->getAllowPointSelect());
35
        $this->assertEquals(null, $obj1->getAnimation());
36
        $this->assertEquals(null, $obj1->getAnimationLimit());
37
        $this->assertEquals(null, $obj1->getClassName());
38
        $this->assertEquals(null, $obj1->getColor());
39
        $this->assertEquals(null, $obj1->getColorIndex());
40
        $this->assertEquals(null, $obj1->getConnectNulls());
41
        $this->assertEquals(null, $obj1->getCropThreshold());
42
        $this->assertEquals(null, $obj1->getCursor());
43
        $this->assertEquals(null, $obj1->getDashStyle());
44
        $this->assertEquals(null, $obj1->getData());
45
        $this->assertEquals(null, $obj1->getDataLabels());
46
        $this->assertEquals(null, $obj1->getDescription());
47
        $this->assertEquals(null, $obj1->getEnableMouseTracking());
48
        $this->assertEquals(null, $obj1->getEvents());
49
        $this->assertEquals(null, $obj1->getExposeElementToA11y());
50
        $this->assertEquals(null, $obj1->getFillColor());
51
        $this->assertEquals(null, $obj1->getFillOpacity());
52
        $this->assertEquals(null, $obj1->getFindNearestPointBy());
53
        $this->assertEquals(null, $obj1->getGetExtremesFromAll());
54
        $this->assertEquals(null, $obj1->getId());
55
        $this->assertEquals(null, $obj1->getIndex());
56
        $this->assertEquals(null, $obj1->getKeys());
57
        $this->assertEquals(null, $obj1->getLegendIndex());
58
        $this->assertEquals(null, $obj1->getLineColor());
59
        $this->assertEquals(null, $obj1->getLineWidth());
60
        $this->assertEquals(null, $obj1->getLinecap());
61
        $this->assertEquals(null, $obj1->getLinkedTo());
62
        $this->assertEquals(null, $obj1->getName());
63
        $this->assertEquals(null, $obj1->getNegativeColor());
64
        $this->assertEquals(null, $obj1->getNegativeFillColor());
65
        $this->assertEquals(null, $obj1->getPoint());
66
        $this->assertEquals(null, $obj1->getPointDescriptionFormatter());
67
        $this->assertEquals(null, $obj1->getPointInterval());
68
        $this->assertEquals(null, $obj1->getPointIntervalUnit());
69
        $this->assertEquals(null, $obj1->getPointPlacement());
70
        $this->assertEquals(null, $obj1->getPointStart());
71
        $this->assertEquals(null, $obj1->getSelected());
72
        $this->assertEquals(null, $obj1->getShadow());
73
        $this->assertEquals(null, $obj1->getShowCheckbox());
74
        $this->assertEquals(null, $obj1->getShowInLegend());
75
        $this->assertEquals(null, $obj1->getSkipKeyboardNavigation());
76
        $this->assertEquals(null, $obj1->getStates());
77
        $this->assertEquals(null, $obj1->getStickyTracking());
78
        $this->assertEquals(null, $obj1->getTooltip());
79
        $this->assertEquals(null, $obj1->getTrackByArea());
80
        $this->assertEquals(null, $obj1->getTurboThreshold());
81
        $this->assertEquals(null, $obj1->getType());
82
        $this->assertEquals(null, $obj1->getVisible());
83
        $this->assertEquals(null, $obj1->getXAxis());
84
        $this->assertEquals(null, $obj1->getYAxis());
85
        $this->assertEquals(null, $obj1->getZIndex());
86
        $this->assertEquals(null, $obj1->getZoneAxis());
87
        $this->assertEquals(null, $obj1->getZones());
88
89
        $obj0 = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(false);
90
91
        $this->assertEquals(false, $obj0->getAllowPointSelect());
92
        $this->assertEquals(true, $obj0->getAnimation());
93
        $this->assertEquals(null, $obj0->getAnimationLimit());
94
        $this->assertEquals(null, $obj0->getClassName());
95
        $this->assertEquals(null, $obj0->getColor());
96
        $this->assertEquals(null, $obj0->getColorIndex());
97
        $this->assertEquals(false, $obj0->getConnectNulls());
98
        $this->assertEquals(300, $obj0->getCropThreshold());
99
        $this->assertEquals(null, $obj0->getCursor());
100
        $this->assertEquals("Solid", $obj0->getDashStyle());
101
        $this->assertEquals(null, $obj0->getData());
102
        $this->assertEquals(null, $obj0->getDataLabels());
103
        $this->assertEquals(null, $obj0->getDescription());
104
        $this->assertEquals(true, $obj0->getEnableMouseTracking());
105
        $this->assertEquals(null, $obj0->getEvents());
106
        $this->assertEquals(null, $obj0->getExposeElementToA11y());
107
        $this->assertEquals(null, $obj0->getFillColor());
108
        $this->assertEquals(0.75, $obj0->getFillOpacity());
109
        $this->assertEquals(null, $obj0->getFindNearestPointBy());
110
        $this->assertEquals(false, $obj0->getGetExtremesFromAll());
111
        $this->assertEquals(null, $obj0->getId());
112
        $this->assertEquals(null, $obj0->getIndex());
113
        $this->assertEquals(null, $obj0->getKeys());
114
        $this->assertEquals(null, $obj0->getLegendIndex());
115
        $this->assertEquals(null, $obj0->getLineColor());
116
        $this->assertEquals(1, $obj0->getLineWidth());
117
        $this->assertEquals("round", $obj0->getLinecap());
118
        $this->assertEquals(null, $obj0->getLinkedTo());
119
        $this->assertEquals(null, $obj0->getName());
120
        $this->assertEquals(null, $obj0->getNegativeColor());
121
        $this->assertEquals(null, $obj0->getNegativeFillColor());
122
        $this->assertEquals(null, $obj0->getPoint());
123
        $this->assertEquals(null, $obj0->getPointDescriptionFormatter());
124
        $this->assertEquals(1, $obj0->getPointInterval());
125
        $this->assertEquals(null, $obj0->getPointIntervalUnit());
126
        $this->assertEquals(null, $obj0->getPointPlacement());
127
        $this->assertEquals(0, $obj0->getPointStart());
128
        $this->assertEquals(false, $obj0->getSelected());
129
        $this->assertEquals(false, $obj0->getShadow());
130
        $this->assertEquals(false, $obj0->getShowCheckbox());
131
        $this->assertEquals(true, $obj0->getShowInLegend());
132
        $this->assertEquals(null, $obj0->getSkipKeyboardNavigation());
133
        $this->assertEquals(null, $obj0->getStates());
134
        $this->assertEquals(true, $obj0->getStickyTracking());
135
        $this->assertEquals(null, $obj0->getTooltip());
136
        $this->assertEquals(true, $obj0->getTrackByArea());
137
        $this->assertEquals(1000, $obj0->getTurboThreshold());
138
        $this->assertEquals(null, $obj0->getType());
139
        $this->assertEquals(true, $obj0->getVisible());
140
        $this->assertEquals("0", $obj0->getXAxis());
141
        $this->assertEquals("0", $obj0->getYAxis());
142
        $this->assertEquals(null, $obj0->getZIndex());
143
        $this->assertEquals("y", $obj0->getZoneAxis());
144
        $this->assertEquals(null, $obj0->getZones());
145
    }
146
147
    /**
148
     * Tests the clear() method.
149
     *
150
     * @return void
151
     */
152
    public function testClear() {
153
154
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(false);
155
156
        $obj->newEvents();
157
        $obj->newPoint();
158
        $obj->newStates();
159
160
        $obj->clear();
161
162
        $res = ["events" => [], "point" => [], "states" => []];
163
        $this->assertEquals($res, $obj->toArray());
164
    }
165
166
    /**
167
     * Tests the jsonSerialize() method.
168
     *
169
     * @return void
170
     */
171
    public function testJsonSerialize() {
172
173
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(true);
174
175
        $this->assertEquals([], $obj->jsonSerialize());
176
    }
177
178
    /**
179
     * Tests the newEvents() method.
180
     *
181
     * @return void.
182
     */
183
    public function testNewEvents() {
184
185
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(false);
186
187
        $res = $obj->newEvents();
188
        $this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsEvents::class, $res);
189
    }
190
191
    /**
192
     * Tests the newPoint() method.
193
     *
194
     * @return void.
195
     */
196
    public function testNewPoint() {
197
198
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(false);
199
200
        $res = $obj->newPoint();
201
        $this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsPoint::class, $res);
202
    }
203
204
    /**
205
     * Tests the newStates() method.
206
     *
207
     * @return void.
208
     */
209
    public function testNewStates() {
210
211
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(false);
212
213
        $res = $obj->newStates();
214
        $this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsStates::class, $res);
215
    }
216
217
    /**
218
     * Tests the toArray() method.
219
     *
220
     * @return void
221
     */
222
    public function testToArray() {
223
224
        $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(true);
225
226
        $obj->setAllowPointSelect(0);
227
228
        $res1 = ["allowPointSelect" => 0];
229
        $this->assertEquals($res1, $obj->toArray());
230
231
        $obj->setAnimation(0);
232
233
        $res2 = ["allowPointSelect" => 0, "animation" => 0];
234
        $this->assertEquals($res2, $obj->toArray());
235
236
        $obj->setAnimationLimit(44);
237
238
        $res3 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44];
239
        $this->assertEquals($res3, $obj->toArray());
240
241
        $obj->setClassName("6f66e878c62db60568a3487869695820");
242
243
        $res4 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820"];
244
        $this->assertEquals($res4, $obj->toArray());
245
246
        $obj->setColor("70dda5dfb8053dc6d1c492574bce9bfd");
247
248
        $res5 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd"];
249
        $this->assertEquals($res5, $obj->toArray());
250
251
        $obj->setColorIndex(46);
252
253
        $res6 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46];
254
        $this->assertEquals($res6, $obj->toArray());
255
256
        $obj->setConnectNulls(1);
257
258
        $res7 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1];
259
        $this->assertEquals($res7, $obj->toArray());
260
261
        $obj->setCropThreshold(95);
262
263
        $res8 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95];
264
        $this->assertEquals($res8, $obj->toArray());
265
266
        $obj->setCursor("crosshair");
267
268
        $res9 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair"];
269
        $this->assertEquals($res9, $obj->toArray());
270
271
        $obj->setDashStyle("LongDashDotDot");
272
273
        $res10 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot"];
274
        $this->assertEquals($res10, $obj->toArray());
275
276
        $obj->setData(["data" => "8d777f385d3dfec8815d20f7496026dc"]);
277
278
        $res11 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"]];
279
        $this->assertEquals($res11, $obj->toArray());
280
281
        $obj->setDataLabels(["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"]);
282
283
        $res12 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"]];
284
        $this->assertEquals($res12, $obj->toArray());
285
286
        $obj->setDescription("67daf92c833c41c95db874e18fcb2786");
287
288
        $res13 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786"];
289
        $this->assertEquals($res13, $obj->toArray());
290
291
        $obj->setEnableMouseTracking(1);
292
293
        $res14 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1];
294
        $this->assertEquals($res14, $obj->toArray());
295
296
        $obj->setEvents(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsEvents());
297
298
        $res15 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => []];
299
        $this->assertEquals($res15, $obj->toArray());
300
301
        $obj->setExposeElementToA11y(0);
302
303
        $res16 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0];
304
        $this->assertEquals($res16, $obj->toArray());
305
306
        $obj->setFillColor("1fde055d3ff900e04ca08bc82066d7fd");
307
308
        $res17 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd"];
309
        $this->assertEquals($res17, $obj->toArray());
310
311
        $obj->setFillOpacity(31);
312
313
        $res18 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31];
314
        $this->assertEquals($res18, $obj->toArray());
315
316
        $obj->setFindNearestPointBy("xy");
317
318
        $res19 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy"];
319
        $this->assertEquals($res19, $obj->toArray());
320
321
        $obj->setGetExtremesFromAll(1);
322
323
        $res20 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1];
324
        $this->assertEquals($res20, $obj->toArray());
325
326
        $obj->setId("b80bb7740288fda1f201890375a60c8f");
327
328
        $res21 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f"];
329
        $this->assertEquals($res21, $obj->toArray());
330
331
        $obj->setIndex(24);
332
333
        $res22 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24];
334
        $this->assertEquals($res22, $obj->toArray());
335
336
        $obj->setKeys(["keys" => "14f802e1fba977727845e8872c1743a7"]);
337
338
        $res23 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"]];
339
        $this->assertEquals($res23, $obj->toArray());
340
341
        $obj->setLegendIndex(38);
342
343
        $res24 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38];
344
        $this->assertEquals($res24, $obj->toArray());
345
346
        $obj->setLineColor("c2580eebfdbdb9fc629f50cc147c3f63");
347
348
        $res25 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63"];
349
        $this->assertEquals($res25, $obj->toArray());
350
351
        $obj->setLineWidth(44);
352
353
        $res26 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44];
354
        $this->assertEquals($res26, $obj->toArray());
355
356
        $obj->setLinecap("square");
357
358
        $res27 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square"];
359
        $this->assertEquals($res27, $obj->toArray());
360
361
        $obj->setLinkedTo("914fab47afc86331ec62837807a29419");
362
363
        $res28 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419"];
364
        $this->assertEquals($res28, $obj->toArray());
365
366
        $obj->setName("b068931cc450442b63f5b3d276ea4297");
367
368
        $res29 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297"];
369
        $this->assertEquals($res29, $obj->toArray());
370
371
        $obj->setNegativeColor("52fe4d3a854b01e25193b4f35fc2040e");
372
373
        $res30 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e"];
374
        $this->assertEquals($res30, $obj->toArray());
375
376
        $obj->setNegativeFillColor("a966442d64e00bf8663e7c5d9708074a");
377
378
        $res31 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a"];
379
        $this->assertEquals($res31, $obj->toArray());
380
381
        $obj->setPoint(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsPoint());
382
383
        $res32 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => []];
384
        $this->assertEquals($res32, $obj->toArray());
385
386
        $obj->setPointDescriptionFormatter("b5fd0c15b3ca81f726e2c7b93907ba36");
387
388
        $res33 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36"];
389
        $this->assertEquals($res33, $obj->toArray());
390
391
        $obj->setPointInterval(50);
392
393
        $res34 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50];
394
        $this->assertEquals($res34, $obj->toArray());
395
396
        $obj->setPointIntervalUnit("year");
397
398
        $res35 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year"];
399
        $this->assertEquals($res35, $obj->toArray());
400
401
        $obj->setPointPlacement("between");
402
403
        $res36 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between"];
404
        $this->assertEquals($res36, $obj->toArray());
405
406
        $obj->setPointStart(64);
407
408
        $res37 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64];
409
        $this->assertEquals($res37, $obj->toArray());
410
411
        $obj->setSelected(0);
412
413
        $res38 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0];
414
        $this->assertEquals($res38, $obj->toArray());
415
416
        $obj->setShadow(0);
417
418
        $res39 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0];
419
        $this->assertEquals($res39, $obj->toArray());
420
421
        $obj->setShowCheckbox(0);
422
423
        $res40 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0];
424
        $this->assertEquals($res40, $obj->toArray());
425
426
        $obj->setShowInLegend(1);
427
428
        $res41 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1];
429
        $this->assertEquals($res41, $obj->toArray());
430
431
        $obj->setSkipKeyboardNavigation(1);
432
433
        $res42 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1];
434
        $this->assertEquals($res42, $obj->toArray());
435
436
        $obj->setStates(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsStates());
437
438
        $res43 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => []];
439
        $this->assertEquals($res43, $obj->toArray());
440
441
        $obj->setStickyTracking(0);
442
443
        $res44 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0];
444
        $this->assertEquals($res44, $obj->toArray());
445
446
        $obj->setTooltip(["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"]);
447
448
        $res45 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"]];
449
        $this->assertEquals($res45, $obj->toArray());
450
451
        $obj->setTrackByArea(1);
452
453
        $res46 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1];
454
        $this->assertEquals($res46, $obj->toArray());
455
456
        $obj->setTurboThreshold(69);
457
458
        $res47 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69];
459
        $this->assertEquals($res47, $obj->toArray());
460
461
        $obj->setType("waterfall");
462
463
        $res48 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall"];
464
        $this->assertEquals($res48, $obj->toArray());
465
466
        $obj->setVisible(0);
467
468
        $res49 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0];
469
        $this->assertEquals($res49, $obj->toArray());
470
471
        $obj->setXAxis(93);
472
473
        $res50 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93];
474
        $this->assertEquals($res50, $obj->toArray());
475
476
        $obj->setYAxis(97);
477
478
        $res51 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97];
479
        $this->assertEquals($res51, $obj->toArray());
480
481
        $obj->setZIndex(65);
482
483
        $res52 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97, "zIndex" => 65];
484
        $this->assertEquals($res52, $obj->toArray());
485
486
        $obj->setZoneAxis("88421adabea658556aa3ab6c6181afad");
487
488
        $res53 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97, "zIndex" => 65, "zoneAxis" => "88421adabea658556aa3ab6c6181afad"];
489
        $this->assertEquals($res53, $obj->toArray());
490
491
        $obj->setZones(["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]);
492
493
        $res54 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97, "zIndex" => 65, "zoneAxis" => "88421adabea658556aa3ab6c6181afad", "zones" => ["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]];
494
        $this->assertEquals($res54, $obj->toArray());
495
    }
496
497
}
498