|
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 errorbar 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 HighchartsErrorbarTest 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\HighchartsErrorbar(true); |
|
33
|
|
|
|
|
34
|
|
|
$this->assertEquals(null, $obj1->getAllowPointSelect()); |
|
35
|
|
|
$this->assertEquals(null, $obj1->getAnimationLimit()); |
|
36
|
|
|
$this->assertEquals(null, $obj1->getClassName()); |
|
37
|
|
|
$this->assertEquals(null, $obj1->getColor()); |
|
38
|
|
|
$this->assertEquals(null, $obj1->getColorByPoint()); |
|
39
|
|
|
$this->assertEquals(null, $obj1->getColorIndex()); |
|
40
|
|
|
$this->assertEquals(null, $obj1->getColors()); |
|
41
|
|
|
$this->assertEquals(null, $obj1->getCrisp()); |
|
42
|
|
|
$this->assertEquals(null, $obj1->getCursor()); |
|
43
|
|
|
$this->assertEquals(null, $obj1->getData()); |
|
44
|
|
|
$this->assertEquals(null, $obj1->getDepth()); |
|
45
|
|
|
$this->assertEquals(null, $obj1->getDescription()); |
|
46
|
|
|
$this->assertEquals(null, $obj1->getEdgeColor()); |
|
47
|
|
|
$this->assertEquals(null, $obj1->getEdgeWidth()); |
|
48
|
|
|
$this->assertEquals(null, $obj1->getEnableMouseTracking()); |
|
49
|
|
|
$this->assertEquals(null, $obj1->getEvents()); |
|
50
|
|
|
$this->assertEquals(null, $obj1->getExposeElementToA11y()); |
|
51
|
|
|
$this->assertEquals(null, $obj1->getFindNearestPointBy()); |
|
52
|
|
|
$this->assertEquals(null, $obj1->getGetExtremesFromAll()); |
|
53
|
|
|
$this->assertEquals(null, $obj1->getGroupZPadding()); |
|
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->getLineWidth()); |
|
59
|
|
|
$this->assertEquals(null, $obj1->getLinkedTo()); |
|
60
|
|
|
$this->assertEquals(null, $obj1->getMaxPointWidth()); |
|
61
|
|
|
$this->assertEquals(null, $obj1->getName()); |
|
62
|
|
|
$this->assertEquals(null, $obj1->getNegativeColor()); |
|
63
|
|
|
$this->assertEquals(null, $obj1->getPoint()); |
|
64
|
|
|
$this->assertEquals(null, $obj1->getPointDescriptionFormatter()); |
|
65
|
|
|
$this->assertEquals(null, $obj1->getPointInterval()); |
|
66
|
|
|
$this->assertEquals(null, $obj1->getPointIntervalUnit()); |
|
67
|
|
|
$this->assertEquals(null, $obj1->getPointPadding()); |
|
68
|
|
|
$this->assertEquals(null, $obj1->getPointPlacement()); |
|
69
|
|
|
$this->assertEquals(null, $obj1->getPointRange()); |
|
70
|
|
|
$this->assertEquals(null, $obj1->getPointStart()); |
|
71
|
|
|
$this->assertEquals(null, $obj1->getPointWidth()); |
|
72
|
|
|
$this->assertEquals(null, $obj1->getSelected()); |
|
73
|
|
|
$this->assertEquals(null, $obj1->getSkipKeyboardNavigation()); |
|
74
|
|
|
$this->assertEquals(null, $obj1->getStates()); |
|
75
|
|
|
$this->assertEquals(null, $obj1->getStemColor()); |
|
76
|
|
|
$this->assertEquals(null, $obj1->getStemDashStyle()); |
|
77
|
|
|
$this->assertEquals(null, $obj1->getStemWidth()); |
|
78
|
|
|
$this->assertEquals(null, $obj1->getStickyTracking()); |
|
79
|
|
|
$this->assertEquals(null, $obj1->getTooltip()); |
|
80
|
|
|
$this->assertEquals(null, $obj1->getTurboThreshold()); |
|
81
|
|
|
$this->assertEquals(null, $obj1->getType()); |
|
82
|
|
|
$this->assertEquals(null, $obj1->getVisible()); |
|
83
|
|
|
$this->assertEquals(null, $obj1->getWhiskerColor()); |
|
84
|
|
|
$this->assertEquals(null, $obj1->getWhiskerLength()); |
|
85
|
|
|
$this->assertEquals(null, $obj1->getWhiskerWidth()); |
|
86
|
|
|
$this->assertEquals(null, $obj1->getXAxis()); |
|
87
|
|
|
$this->assertEquals(null, $obj1->getYAxis()); |
|
88
|
|
|
$this->assertEquals(null, $obj1->getZIndex()); |
|
89
|
|
|
$this->assertEquals(null, $obj1->getZoneAxis()); |
|
90
|
|
|
$this->assertEquals(null, $obj1->getZones()); |
|
91
|
|
|
|
|
92
|
|
|
$obj0 = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar(false); |
|
93
|
|
|
|
|
94
|
|
|
$this->assertEquals(false, $obj0->getAllowPointSelect()); |
|
95
|
|
|
$this->assertEquals(null, $obj0->getAnimationLimit()); |
|
96
|
|
|
$this->assertEquals(null, $obj0->getClassName()); |
|
97
|
|
|
$this->assertEquals("#000000", $obj0->getColor()); |
|
98
|
|
|
$this->assertEquals(false, $obj0->getColorByPoint()); |
|
99
|
|
|
$this->assertEquals(null, $obj0->getColorIndex()); |
|
100
|
|
|
$this->assertEquals(null, $obj0->getColors()); |
|
101
|
|
|
$this->assertEquals(true, $obj0->getCrisp()); |
|
102
|
|
|
$this->assertEquals(null, $obj0->getCursor()); |
|
103
|
|
|
$this->assertEquals(null, $obj0->getData()); |
|
104
|
|
|
$this->assertEquals(25, $obj0->getDepth()); |
|
105
|
|
|
$this->assertEquals(null, $obj0->getDescription()); |
|
106
|
|
|
$this->assertEquals(null, $obj0->getEdgeColor()); |
|
107
|
|
|
$this->assertEquals(1, $obj0->getEdgeWidth()); |
|
108
|
|
|
$this->assertEquals(true, $obj0->getEnableMouseTracking()); |
|
109
|
|
|
$this->assertEquals(null, $obj0->getEvents()); |
|
110
|
|
|
$this->assertEquals(null, $obj0->getExposeElementToA11y()); |
|
111
|
|
|
$this->assertEquals(null, $obj0->getFindNearestPointBy()); |
|
112
|
|
|
$this->assertEquals(false, $obj0->getGetExtremesFromAll()); |
|
113
|
|
|
$this->assertEquals(1, $obj0->getGroupZPadding()); |
|
114
|
|
|
$this->assertEquals(null, $obj0->getId()); |
|
115
|
|
|
$this->assertEquals(null, $obj0->getIndex()); |
|
116
|
|
|
$this->assertEquals(null, $obj0->getKeys()); |
|
117
|
|
|
$this->assertEquals(null, $obj0->getLegendIndex()); |
|
118
|
|
|
$this->assertEquals(1, $obj0->getLineWidth()); |
|
119
|
|
|
$this->assertEquals(":previous", $obj0->getLinkedTo()); |
|
120
|
|
|
$this->assertEquals(null, $obj0->getMaxPointWidth()); |
|
121
|
|
|
$this->assertEquals(null, $obj0->getName()); |
|
122
|
|
|
$this->assertEquals(null, $obj0->getNegativeColor()); |
|
123
|
|
|
$this->assertEquals(null, $obj0->getPoint()); |
|
124
|
|
|
$this->assertEquals(null, $obj0->getPointDescriptionFormatter()); |
|
125
|
|
|
$this->assertEquals(1, $obj0->getPointInterval()); |
|
126
|
|
|
$this->assertEquals(null, $obj0->getPointIntervalUnit()); |
|
127
|
|
|
$this->assertEquals(0.1, $obj0->getPointPadding()); |
|
128
|
|
|
$this->assertEquals(null, $obj0->getPointPlacement()); |
|
129
|
|
|
$this->assertEquals(null, $obj0->getPointRange()); |
|
130
|
|
|
$this->assertEquals(0, $obj0->getPointStart()); |
|
131
|
|
|
$this->assertEquals(null, $obj0->getPointWidth()); |
|
132
|
|
|
$this->assertEquals(false, $obj0->getSelected()); |
|
133
|
|
|
$this->assertEquals(null, $obj0->getSkipKeyboardNavigation()); |
|
134
|
|
|
$this->assertEquals(null, $obj0->getStates()); |
|
135
|
|
|
$this->assertEquals(null, $obj0->getStemColor()); |
|
136
|
|
|
$this->assertEquals("Solid", $obj0->getStemDashStyle()); |
|
137
|
|
|
$this->assertEquals(null, $obj0->getStemWidth()); |
|
138
|
|
|
$this->assertEquals(true, $obj0->getStickyTracking()); |
|
139
|
|
|
$this->assertEquals(null, $obj0->getTooltip()); |
|
140
|
|
|
$this->assertEquals(1000, $obj0->getTurboThreshold()); |
|
141
|
|
|
$this->assertEquals(null, $obj0->getType()); |
|
142
|
|
|
$this->assertEquals(true, $obj0->getVisible()); |
|
143
|
|
|
$this->assertEquals(null, $obj0->getWhiskerColor()); |
|
144
|
|
|
$this->assertEquals("50%", $obj0->getWhiskerLength()); |
|
145
|
|
|
$this->assertEquals(null, $obj0->getWhiskerWidth()); |
|
146
|
|
|
$this->assertEquals("0", $obj0->getXAxis()); |
|
147
|
|
|
$this->assertEquals("0", $obj0->getYAxis()); |
|
148
|
|
|
$this->assertEquals(null, $obj0->getZIndex()); |
|
149
|
|
|
$this->assertEquals("y", $obj0->getZoneAxis()); |
|
150
|
|
|
$this->assertEquals(null, $obj0->getZones()); |
|
151
|
|
|
} |
|
152
|
|
|
|
|
153
|
|
|
/** |
|
154
|
|
|
* Tests the clear() method. |
|
155
|
|
|
* |
|
156
|
|
|
* @return void |
|
157
|
|
|
*/ |
|
158
|
|
|
public function testClear() { |
|
159
|
|
|
|
|
160
|
|
|
$obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar(false); |
|
161
|
|
|
|
|
162
|
|
|
$obj->newEvents(); |
|
163
|
|
|
$obj->newPoint(); |
|
164
|
|
|
$obj->newStates(); |
|
165
|
|
|
|
|
166
|
|
|
$obj->clear(); |
|
167
|
|
|
|
|
168
|
|
|
$res = ["events" => [], "point" => [], "states" => []]; |
|
169
|
|
|
$this->assertEquals($res, $obj->toArray()); |
|
170
|
|
|
} |
|
171
|
|
|
|
|
172
|
|
|
/** |
|
173
|
|
|
* Tests the jsonSerialize() method. |
|
174
|
|
|
* |
|
175
|
|
|
* @return void |
|
176
|
|
|
*/ |
|
177
|
|
|
public function testJsonSerialize() { |
|
178
|
|
|
|
|
179
|
|
|
$obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar(true); |
|
180
|
|
|
|
|
181
|
|
|
$this->assertEquals([], $obj->jsonSerialize()); |
|
182
|
|
|
} |
|
183
|
|
|
|
|
184
|
|
|
/** |
|
185
|
|
|
* Tests the newEvents() method. |
|
186
|
|
|
* |
|
187
|
|
|
* @return void. |
|
188
|
|
|
*/ |
|
189
|
|
|
public function testNewEvents() { |
|
190
|
|
|
|
|
191
|
|
|
$obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar(false); |
|
192
|
|
|
|
|
193
|
|
|
$res = $obj->newEvents(); |
|
194
|
|
|
$this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsEvents::class, $res); |
|
195
|
|
|
} |
|
196
|
|
|
|
|
197
|
|
|
/** |
|
198
|
|
|
* Tests the newPoint() method. |
|
199
|
|
|
* |
|
200
|
|
|
* @return void. |
|
201
|
|
|
*/ |
|
202
|
|
|
public function testNewPoint() { |
|
203
|
|
|
|
|
204
|
|
|
$obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar(false); |
|
205
|
|
|
|
|
206
|
|
|
$res = $obj->newPoint(); |
|
207
|
|
|
$this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsPoint::class, $res); |
|
208
|
|
|
} |
|
209
|
|
|
|
|
210
|
|
|
/** |
|
211
|
|
|
* Tests the newStates() method. |
|
212
|
|
|
* |
|
213
|
|
|
* @return void. |
|
214
|
|
|
*/ |
|
215
|
|
|
public function testNewStates() { |
|
216
|
|
|
|
|
217
|
|
|
$obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar(false); |
|
218
|
|
|
|
|
219
|
|
|
$res = $obj->newStates(); |
|
220
|
|
|
$this->assertInstanceOf(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsStates::class, $res); |
|
221
|
|
|
} |
|
222
|
|
|
|
|
223
|
|
|
/** |
|
224
|
|
|
* Tests the toArray() method. |
|
225
|
|
|
* |
|
226
|
|
|
* @return void |
|
227
|
|
|
*/ |
|
228
|
|
|
public function testToArray() { |
|
229
|
|
|
|
|
230
|
|
|
$obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsErrorbar(true); |
|
231
|
|
|
|
|
232
|
|
|
$obj->setAllowPointSelect(0); |
|
233
|
|
|
|
|
234
|
|
|
$res1 = ["allowPointSelect" => 0]; |
|
235
|
|
|
$this->assertEquals($res1, $obj->toArray()); |
|
236
|
|
|
|
|
237
|
|
|
$obj->setAnimationLimit(80); |
|
238
|
|
|
|
|
239
|
|
|
$res2 = ["allowPointSelect" => 0, "animationLimit" => 80]; |
|
240
|
|
|
$this->assertEquals($res2, $obj->toArray()); |
|
241
|
|
|
|
|
242
|
|
|
$obj->setClassName("6f66e878c62db60568a3487869695820"); |
|
243
|
|
|
|
|
244
|
|
|
$res3 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820"]; |
|
245
|
|
|
$this->assertEquals($res3, $obj->toArray()); |
|
246
|
|
|
|
|
247
|
|
|
$obj->setColor("70dda5dfb8053dc6d1c492574bce9bfd"); |
|
248
|
|
|
|
|
249
|
|
|
$res4 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd"]; |
|
250
|
|
|
$this->assertEquals($res4, $obj->toArray()); |
|
251
|
|
|
|
|
252
|
|
|
$obj->setColorByPoint(0); |
|
253
|
|
|
|
|
254
|
|
|
$res5 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0]; |
|
255
|
|
|
$this->assertEquals($res5, $obj->toArray()); |
|
256
|
|
|
|
|
257
|
|
|
$obj->setColorIndex(68); |
|
258
|
|
|
|
|
259
|
|
|
$res6 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68]; |
|
260
|
|
|
$this->assertEquals($res6, $obj->toArray()); |
|
261
|
|
|
|
|
262
|
|
|
$obj->setColors(["colors" => "62848e3ce5804aa985513a7922ff87b2"]); |
|
263
|
|
|
|
|
264
|
|
|
$res7 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"]]; |
|
265
|
|
|
$this->assertEquals($res7, $obj->toArray()); |
|
266
|
|
|
|
|
267
|
|
|
$obj->setCrisp(0); |
|
268
|
|
|
|
|
269
|
|
|
$res8 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0]; |
|
270
|
|
|
$this->assertEquals($res8, $obj->toArray()); |
|
271
|
|
|
|
|
272
|
|
|
$obj->setCursor("crosshair"); |
|
273
|
|
|
|
|
274
|
|
|
$res9 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair"]; |
|
275
|
|
|
$this->assertEquals($res9, $obj->toArray()); |
|
276
|
|
|
|
|
277
|
|
|
$obj->setData(["data" => "8d777f385d3dfec8815d20f7496026dc"]); |
|
278
|
|
|
|
|
279
|
|
|
$res10 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"]]; |
|
280
|
|
|
$this->assertEquals($res10, $obj->toArray()); |
|
281
|
|
|
|
|
282
|
|
|
$obj->setDepth(0); |
|
283
|
|
|
|
|
284
|
|
|
$res11 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0]; |
|
285
|
|
|
$this->assertEquals($res11, $obj->toArray()); |
|
286
|
|
|
|
|
287
|
|
|
$obj->setDescription("67daf92c833c41c95db874e18fcb2786"); |
|
288
|
|
|
|
|
289
|
|
|
$res12 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786"]; |
|
290
|
|
|
$this->assertEquals($res12, $obj->toArray()); |
|
291
|
|
|
|
|
292
|
|
|
$obj->setEdgeColor("acbab0d2e7e54e5a7a32fc80409601fc"); |
|
293
|
|
|
|
|
294
|
|
|
$res13 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc"]; |
|
295
|
|
|
$this->assertEquals($res13, $obj->toArray()); |
|
296
|
|
|
|
|
297
|
|
|
$obj->setEdgeWidth(100); |
|
298
|
|
|
|
|
299
|
|
|
$res14 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100]; |
|
300
|
|
|
$this->assertEquals($res14, $obj->toArray()); |
|
301
|
|
|
|
|
302
|
|
|
$obj->setEnableMouseTracking(1); |
|
303
|
|
|
|
|
304
|
|
|
$res15 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1]; |
|
305
|
|
|
$this->assertEquals($res15, $obj->toArray()); |
|
306
|
|
|
|
|
307
|
|
|
$obj->setEvents(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsEvents()); |
|
308
|
|
|
|
|
309
|
|
|
$res16 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => []]; |
|
310
|
|
|
$this->assertEquals($res16, $obj->toArray()); |
|
311
|
|
|
|
|
312
|
|
|
$obj->setExposeElementToA11y(1); |
|
313
|
|
|
|
|
314
|
|
|
$res17 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1]; |
|
315
|
|
|
$this->assertEquals($res17, $obj->toArray()); |
|
316
|
|
|
|
|
317
|
|
|
$obj->setFindNearestPointBy("xy"); |
|
318
|
|
|
|
|
319
|
|
|
$res18 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy"]; |
|
320
|
|
|
$this->assertEquals($res18, $obj->toArray()); |
|
321
|
|
|
|
|
322
|
|
|
$obj->setGetExtremesFromAll(0); |
|
323
|
|
|
|
|
324
|
|
|
$res19 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0]; |
|
325
|
|
|
$this->assertEquals($res19, $obj->toArray()); |
|
326
|
|
|
|
|
327
|
|
|
$obj->setGroupZPadding(4); |
|
328
|
|
|
|
|
329
|
|
|
$res20 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4]; |
|
330
|
|
|
$this->assertEquals($res20, $obj->toArray()); |
|
331
|
|
|
|
|
332
|
|
|
$obj->setId("b80bb7740288fda1f201890375a60c8f"); |
|
333
|
|
|
|
|
334
|
|
|
$res21 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f"]; |
|
335
|
|
|
$this->assertEquals($res21, $obj->toArray()); |
|
336
|
|
|
|
|
337
|
|
|
$obj->setIndex(27); |
|
338
|
|
|
|
|
339
|
|
|
$res22 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27]; |
|
340
|
|
|
$this->assertEquals($res22, $obj->toArray()); |
|
341
|
|
|
|
|
342
|
|
|
$obj->setKeys(["keys" => "14f802e1fba977727845e8872c1743a7"]); |
|
343
|
|
|
|
|
344
|
|
|
$res23 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"]]; |
|
345
|
|
|
$this->assertEquals($res23, $obj->toArray()); |
|
346
|
|
|
|
|
347
|
|
|
$obj->setLegendIndex(13); |
|
348
|
|
|
|
|
349
|
|
|
$res24 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13]; |
|
350
|
|
|
$this->assertEquals($res24, $obj->toArray()); |
|
351
|
|
|
|
|
352
|
|
|
$obj->setLineWidth(28); |
|
353
|
|
|
|
|
354
|
|
|
$res25 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28]; |
|
355
|
|
|
$this->assertEquals($res25, $obj->toArray()); |
|
356
|
|
|
|
|
357
|
|
|
$obj->setLinkedTo("914fab47afc86331ec62837807a29419"); |
|
358
|
|
|
|
|
359
|
|
|
$res26 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419"]; |
|
360
|
|
|
$this->assertEquals($res26, $obj->toArray()); |
|
361
|
|
|
|
|
362
|
|
|
$obj->setMaxPointWidth(8); |
|
363
|
|
|
|
|
364
|
|
|
$res27 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8]; |
|
365
|
|
|
$this->assertEquals($res27, $obj->toArray()); |
|
366
|
|
|
|
|
367
|
|
|
$obj->setName("b068931cc450442b63f5b3d276ea4297"); |
|
368
|
|
|
|
|
369
|
|
|
$res28 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297"]; |
|
370
|
|
|
$this->assertEquals($res28, $obj->toArray()); |
|
371
|
|
|
|
|
372
|
|
|
$obj->setNegativeColor("52fe4d3a854b01e25193b4f35fc2040e"); |
|
373
|
|
|
|
|
374
|
|
|
$res29 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e"]; |
|
375
|
|
|
$this->assertEquals($res29, $obj->toArray()); |
|
376
|
|
|
|
|
377
|
|
|
$obj->setPoint(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsPoint()); |
|
378
|
|
|
|
|
379
|
|
|
$res30 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => []]; |
|
380
|
|
|
$this->assertEquals($res30, $obj->toArray()); |
|
381
|
|
|
|
|
382
|
|
|
$obj->setPointDescriptionFormatter("b5fd0c15b3ca81f726e2c7b93907ba36"); |
|
383
|
|
|
|
|
384
|
|
|
$res31 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36"]; |
|
385
|
|
|
$this->assertEquals($res31, $obj->toArray()); |
|
386
|
|
|
|
|
387
|
|
|
$obj->setPointInterval(11); |
|
388
|
|
|
|
|
389
|
|
|
$res32 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11]; |
|
390
|
|
|
$this->assertEquals($res32, $obj->toArray()); |
|
391
|
|
|
|
|
392
|
|
|
$obj->setPointIntervalUnit("year"); |
|
393
|
|
|
|
|
394
|
|
|
$res33 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year"]; |
|
395
|
|
|
$this->assertEquals($res33, $obj->toArray()); |
|
396
|
|
|
|
|
397
|
|
|
$obj->setPointPadding(9); |
|
398
|
|
|
|
|
399
|
|
|
$res34 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9]; |
|
400
|
|
|
$this->assertEquals($res34, $obj->toArray()); |
|
401
|
|
|
|
|
402
|
|
|
$obj->setPointPlacement("between"); |
|
403
|
|
|
|
|
404
|
|
|
$res35 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between"]; |
|
405
|
|
|
$this->assertEquals($res35, $obj->toArray()); |
|
406
|
|
|
|
|
407
|
|
|
$obj->setPointRange(43); |
|
408
|
|
|
|
|
409
|
|
|
$res36 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43]; |
|
410
|
|
|
$this->assertEquals($res36, $obj->toArray()); |
|
411
|
|
|
|
|
412
|
|
|
$obj->setPointStart(18); |
|
413
|
|
|
|
|
414
|
|
|
$res37 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18]; |
|
415
|
|
|
$this->assertEquals($res37, $obj->toArray()); |
|
416
|
|
|
|
|
417
|
|
|
$obj->setPointWidth(26); |
|
418
|
|
|
|
|
419
|
|
|
$res38 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26]; |
|
420
|
|
|
$this->assertEquals($res38, $obj->toArray()); |
|
421
|
|
|
|
|
422
|
|
|
$obj->setSelected(0); |
|
423
|
|
|
|
|
424
|
|
|
$res39 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0]; |
|
425
|
|
|
$this->assertEquals($res39, $obj->toArray()); |
|
426
|
|
|
|
|
427
|
|
|
$obj->setSkipKeyboardNavigation(1); |
|
428
|
|
|
|
|
429
|
|
|
$res40 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1]; |
|
430
|
|
|
$this->assertEquals($res40, $obj->toArray()); |
|
431
|
|
|
|
|
432
|
|
|
$obj->setStates(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Errorbar\HighchartsStates()); |
|
433
|
|
|
|
|
434
|
|
|
$res41 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => []]; |
|
435
|
|
|
$this->assertEquals($res41, $obj->toArray()); |
|
436
|
|
|
|
|
437
|
|
|
$obj->setStemColor("98696f23b6ed2a881042dfa365a28d23"); |
|
438
|
|
|
|
|
439
|
|
|
$res42 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23"]; |
|
440
|
|
|
$this->assertEquals($res42, $obj->toArray()); |
|
441
|
|
|
|
|
442
|
|
|
$obj->setStemDashStyle("LongDashDotDot"); |
|
443
|
|
|
|
|
444
|
|
|
$res43 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot"]; |
|
445
|
|
|
$this->assertEquals($res43, $obj->toArray()); |
|
446
|
|
|
|
|
447
|
|
|
$obj->setStemWidth(39); |
|
448
|
|
|
|
|
449
|
|
|
$res44 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39]; |
|
450
|
|
|
$this->assertEquals($res44, $obj->toArray()); |
|
451
|
|
|
|
|
452
|
|
|
$obj->setStickyTracking(0); |
|
453
|
|
|
|
|
454
|
|
|
$res45 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0]; |
|
455
|
|
|
$this->assertEquals($res45, $obj->toArray()); |
|
456
|
|
|
|
|
457
|
|
|
$obj->setTooltip(["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"]); |
|
458
|
|
|
|
|
459
|
|
|
$res46 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"]]; |
|
460
|
|
|
$this->assertEquals($res46, $obj->toArray()); |
|
461
|
|
|
|
|
462
|
|
|
$obj->setTurboThreshold(23); |
|
463
|
|
|
|
|
464
|
|
|
$res47 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23]; |
|
465
|
|
|
$this->assertEquals($res47, $obj->toArray()); |
|
466
|
|
|
|
|
467
|
|
|
$obj->setType("waterfall"); |
|
468
|
|
|
|
|
469
|
|
|
$res48 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall"]; |
|
470
|
|
|
$this->assertEquals($res48, $obj->toArray()); |
|
471
|
|
|
|
|
472
|
|
|
$obj->setVisible(1); |
|
473
|
|
|
|
|
474
|
|
|
$res49 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1]; |
|
475
|
|
|
$this->assertEquals($res49, $obj->toArray()); |
|
476
|
|
|
|
|
477
|
|
|
$obj->setWhiskerColor("3176f361ab524a038497eb1a6c93df38"); |
|
478
|
|
|
|
|
479
|
|
|
$res50 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38"]; |
|
480
|
|
|
$this->assertEquals($res50, $obj->toArray()); |
|
481
|
|
|
|
|
482
|
|
|
$obj->setWhiskerLength(47); |
|
483
|
|
|
|
|
484
|
|
|
$res51 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38", "whiskerLength" => 47]; |
|
485
|
|
|
$this->assertEquals($res51, $obj->toArray()); |
|
486
|
|
|
|
|
487
|
|
|
$obj->setWhiskerWidth(86); |
|
488
|
|
|
|
|
489
|
|
|
$res52 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38", "whiskerLength" => 47, "whiskerWidth" => 86]; |
|
490
|
|
|
$this->assertEquals($res52, $obj->toArray()); |
|
491
|
|
|
|
|
492
|
|
|
$obj->setXAxis(80); |
|
493
|
|
|
|
|
494
|
|
|
$res53 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38", "whiskerLength" => 47, "whiskerWidth" => 86, "xAxis" => 80]; |
|
495
|
|
|
$this->assertEquals($res53, $obj->toArray()); |
|
496
|
|
|
|
|
497
|
|
|
$obj->setYAxis(62); |
|
498
|
|
|
|
|
499
|
|
|
$res54 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38", "whiskerLength" => 47, "whiskerWidth" => 86, "xAxis" => 80, "yAxis" => 62]; |
|
500
|
|
|
$this->assertEquals($res54, $obj->toArray()); |
|
501
|
|
|
|
|
502
|
|
|
$obj->setZIndex(79); |
|
503
|
|
|
|
|
504
|
|
|
$res55 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38", "whiskerLength" => 47, "whiskerWidth" => 86, "xAxis" => 80, "yAxis" => 62, "zIndex" => 79]; |
|
505
|
|
|
$this->assertEquals($res55, $obj->toArray()); |
|
506
|
|
|
|
|
507
|
|
|
$obj->setZoneAxis("88421adabea658556aa3ab6c6181afad"); |
|
508
|
|
|
|
|
509
|
|
|
$res56 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38", "whiskerLength" => 47, "whiskerWidth" => 86, "xAxis" => 80, "yAxis" => 62, "zIndex" => 79, "zoneAxis" => "88421adabea658556aa3ab6c6181afad"]; |
|
510
|
|
|
$this->assertEquals($res56, $obj->toArray()); |
|
511
|
|
|
|
|
512
|
|
|
$obj->setZones(["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]); |
|
513
|
|
|
|
|
514
|
|
|
$res57 = ["allowPointSelect" => 0, "animationLimit" => 80, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 0, "colorIndex" => 68, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 0, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "depth" => 0, "description" => "67daf92c833c41c95db874e18fcb2786", "edgeColor" => "acbab0d2e7e54e5a7a32fc80409601fc", "edgeWidth" => 100, "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 0, "groupZPadding" => 4, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 27, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 13, "lineWidth" => 28, "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 8, "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 11, "pointIntervalUnit" => "year", "pointPadding" => 9, "pointPlacement" => "between", "pointRange" => 43, "pointStart" => 18, "pointWidth" => 26, "selected" => 0, "skipKeyboardNavigation" => 1, "states" => [], "stemColor" => "98696f23b6ed2a881042dfa365a28d23", "stemDashStyle" => "LongDashDotDot", "stemWidth" => 39, "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "turboThreshold" => 23, "type" => "waterfall", "visible" => 1, "whiskerColor" => "3176f361ab524a038497eb1a6c93df38", "whiskerLength" => 47, "whiskerWidth" => 86, "xAxis" => 80, "yAxis" => 62, "zIndex" => 79, "zoneAxis" => "88421adabea658556aa3ab6c6181afad", "zones" => ["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]]; |
|
515
|
|
|
$this->assertEquals($res57, $obj->toArray()); |
|
516
|
|
|
} |
|
517
|
|
|
|
|
518
|
|
|
} |
|
519
|
|
|
|