Conditions | 1 |
Paths | 1 |
Total Lines | 288 |
Code Lines | 172 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
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:
If many parameters/temporary variables are present:
1 | <?php |
||
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 | } |
||
519 |