Conditions | 1 |
Paths | 1 |
Total Lines | 283 |
Code Lines | 169 |
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 |
||
254 | public function testToArray() { |
||
255 | |||
256 | $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsTreemap(true); |
||
257 | |||
258 | $obj->setAllowDrillToNode("true"); |
||
259 | |||
260 | $res1 = ["allowDrillToNode" => "true"]; |
||
261 | $this->assertEquals($res1, $obj->toArray()); |
||
262 | |||
263 | $obj->setAllowPointSelect(1); |
||
264 | |||
265 | $res2 = ["allowDrillToNode" => "true", "allowPointSelect" => 1]; |
||
266 | $this->assertEquals($res2, $obj->toArray()); |
||
267 | |||
268 | $obj->setAlternateStartingDirection(1); |
||
269 | |||
270 | $res3 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1]; |
||
271 | $this->assertEquals($res3, $obj->toArray()); |
||
272 | |||
273 | $obj->setAnimation(0); |
||
274 | |||
275 | $res4 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0]; |
||
276 | $this->assertEquals($res4, $obj->toArray()); |
||
277 | |||
278 | $obj->setAnimationLimit(13); |
||
279 | |||
280 | $res5 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13]; |
||
281 | $this->assertEquals($res5, $obj->toArray()); |
||
282 | |||
283 | $obj->setBorderColor("97da935a74593c55d78be9d1295aa994"); |
||
284 | |||
285 | $res6 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994"]; |
||
286 | $this->assertEquals($res6, $obj->toArray()); |
||
287 | |||
288 | $obj->setBorderWidth(84); |
||
289 | |||
290 | $res7 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84]; |
||
291 | $this->assertEquals($res7, $obj->toArray()); |
||
292 | |||
293 | $obj->setClassName("6f66e878c62db60568a3487869695820"); |
||
294 | |||
295 | $res8 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820"]; |
||
296 | $this->assertEquals($res8, $obj->toArray()); |
||
297 | |||
298 | $obj->setColor("70dda5dfb8053dc6d1c492574bce9bfd"); |
||
299 | |||
300 | $res9 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd"]; |
||
301 | $this->assertEquals($res9, $obj->toArray()); |
||
302 | |||
303 | $obj->setColorByPoint(1); |
||
304 | |||
305 | $res10 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1]; |
||
306 | $this->assertEquals($res10, $obj->toArray()); |
||
307 | |||
308 | $obj->setColorIndex(51); |
||
309 | |||
310 | $res11 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51]; |
||
311 | $this->assertEquals($res11, $obj->toArray()); |
||
312 | |||
313 | $obj->setColors(["colors" => "62848e3ce5804aa985513a7922ff87b2"]); |
||
314 | |||
315 | $res12 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"]]; |
||
316 | $this->assertEquals($res12, $obj->toArray()); |
||
317 | |||
318 | $obj->setCrisp(1); |
||
319 | |||
320 | $res13 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1]; |
||
321 | $this->assertEquals($res13, $obj->toArray()); |
||
322 | |||
323 | $obj->setCropThreshold(11); |
||
324 | |||
325 | $res14 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11]; |
||
326 | $this->assertEquals($res14, $obj->toArray()); |
||
327 | |||
328 | $obj->setCursor("crosshair"); |
||
329 | |||
330 | $res15 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair"]; |
||
331 | $this->assertEquals($res15, $obj->toArray()); |
||
332 | |||
333 | $obj->setData(["data" => "8d777f385d3dfec8815d20f7496026dc"]); |
||
334 | |||
335 | $res16 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"]]; |
||
336 | $this->assertEquals($res16, $obj->toArray()); |
||
337 | |||
338 | $obj->setDataLabels(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsDataLabels()); |
||
339 | |||
340 | $res17 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => []]; |
||
341 | $this->assertEquals($res17, $obj->toArray()); |
||
342 | |||
343 | $obj->setDescription("67daf92c833c41c95db874e18fcb2786"); |
||
344 | |||
345 | $res18 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786"]; |
||
346 | $this->assertEquals($res18, $obj->toArray()); |
||
347 | |||
348 | $obj->setEnableMouseTracking(1); |
||
349 | |||
350 | $res19 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1]; |
||
351 | $this->assertEquals($res19, $obj->toArray()); |
||
352 | |||
353 | $obj->setEvents(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsEvents()); |
||
354 | |||
355 | $res20 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => []]; |
||
356 | $this->assertEquals($res20, $obj->toArray()); |
||
357 | |||
358 | $obj->setExposeElementToA11y(1); |
||
359 | |||
360 | $res21 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1]; |
||
361 | $this->assertEquals($res21, $obj->toArray()); |
||
362 | |||
363 | $obj->setFindNearestPointBy("xy"); |
||
364 | |||
365 | $res22 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy"]; |
||
366 | $this->assertEquals($res22, $obj->toArray()); |
||
367 | |||
368 | $obj->setGetExtremesFromAll(1); |
||
369 | |||
370 | $res23 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1]; |
||
371 | $this->assertEquals($res23, $obj->toArray()); |
||
372 | |||
373 | $obj->setId("b80bb7740288fda1f201890375a60c8f"); |
||
374 | |||
375 | $res24 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f"]; |
||
376 | $this->assertEquals($res24, $obj->toArray()); |
||
377 | |||
378 | $obj->setIgnoreHiddenPoint(1); |
||
379 | |||
380 | $res25 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1]; |
||
381 | $this->assertEquals($res25, $obj->toArray()); |
||
382 | |||
383 | $obj->setIndex(2); |
||
384 | |||
385 | $res26 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2]; |
||
386 | $this->assertEquals($res26, $obj->toArray()); |
||
387 | |||
388 | $obj->setInteractByLeaf(true); |
||
389 | |||
390 | $res27 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true]; |
||
391 | $this->assertEquals($res27, $obj->toArray()); |
||
392 | |||
393 | $obj->setKeys(["keys" => "14f802e1fba977727845e8872c1743a7"]); |
||
394 | |||
395 | $res28 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"]]; |
||
396 | $this->assertEquals($res28, $obj->toArray()); |
||
397 | |||
398 | $obj->setLayoutAlgorithm("strip"); |
||
399 | |||
400 | $res29 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip"]; |
||
401 | $this->assertEquals($res29, $obj->toArray()); |
||
402 | |||
403 | $obj->setLayoutStartingDirection("horizontal"); |
||
404 | |||
405 | $res30 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal"]; |
||
406 | $this->assertEquals($res30, $obj->toArray()); |
||
407 | |||
408 | $obj->setLegendIndex(25); |
||
409 | |||
410 | $res31 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25]; |
||
411 | $this->assertEquals($res31, $obj->toArray()); |
||
412 | |||
413 | $obj->setLevelIsConstant("false"); |
||
414 | |||
415 | $res32 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false"]; |
||
416 | $this->assertEquals($res32, $obj->toArray()); |
||
417 | |||
418 | $obj->setLevels(["levels" => "836eb5e382b5d9f430df48883fca918e"]); |
||
419 | |||
420 | $res33 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"]]; |
||
421 | $this->assertEquals($res33, $obj->toArray()); |
||
422 | |||
423 | $obj->setLinkedTo("914fab47afc86331ec62837807a29419"); |
||
424 | |||
425 | $res34 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419"]; |
||
426 | $this->assertEquals($res34, $obj->toArray()); |
||
427 | |||
428 | $obj->setMaxPointWidth(94); |
||
429 | |||
430 | $res35 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94]; |
||
431 | $this->assertEquals($res35, $obj->toArray()); |
||
432 | |||
433 | $obj->setName("b068931cc450442b63f5b3d276ea4297"); |
||
434 | |||
435 | $res36 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297"]; |
||
436 | $this->assertEquals($res36, $obj->toArray()); |
||
437 | |||
438 | $obj->setOpacity(37); |
||
439 | |||
440 | $res37 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37]; |
||
441 | $this->assertEquals($res37, $obj->toArray()); |
||
442 | |||
443 | $obj->setPoint(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsPoint()); |
||
444 | |||
445 | $res38 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => []]; |
||
446 | $this->assertEquals($res38, $obj->toArray()); |
||
447 | |||
448 | $obj->setPointDescriptionFormatter("b5fd0c15b3ca81f726e2c7b93907ba36"); |
||
449 | |||
450 | $res39 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36"]; |
||
451 | $this->assertEquals($res39, $obj->toArray()); |
||
452 | |||
453 | $obj->setSelected(1); |
||
454 | |||
455 | $res40 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1]; |
||
456 | $this->assertEquals($res40, $obj->toArray()); |
||
457 | |||
458 | $obj->setShadow(0); |
||
459 | |||
460 | $res41 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0]; |
||
461 | $this->assertEquals($res41, $obj->toArray()); |
||
462 | |||
463 | $obj->setShowCheckbox(0); |
||
464 | |||
465 | $res42 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0]; |
||
466 | $this->assertEquals($res42, $obj->toArray()); |
||
467 | |||
468 | $obj->setShowInLegend(0); |
||
469 | |||
470 | $res43 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0]; |
||
471 | $this->assertEquals($res43, $obj->toArray()); |
||
472 | |||
473 | $obj->setSkipKeyboardNavigation(1); |
||
474 | |||
475 | $res44 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1]; |
||
476 | $this->assertEquals($res44, $obj->toArray()); |
||
477 | |||
478 | $obj->setSortIndex(73); |
||
479 | |||
480 | $res45 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73]; |
||
481 | $this->assertEquals($res45, $obj->toArray()); |
||
482 | |||
483 | $obj->setStates(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsStates()); |
||
484 | |||
485 | $res46 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => []]; |
||
486 | $this->assertEquals($res46, $obj->toArray()); |
||
487 | |||
488 | $obj->setStickyTracking(1); |
||
489 | |||
490 | $res47 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1]; |
||
491 | $this->assertEquals($res47, $obj->toArray()); |
||
492 | |||
493 | $obj->setTooltip(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Treemap\HighchartsTooltip()); |
||
494 | |||
495 | $res48 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => []]; |
||
496 | $this->assertEquals($res48, $obj->toArray()); |
||
497 | |||
498 | $obj->setTurboThreshold(16); |
||
499 | |||
500 | $res49 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16]; |
||
501 | $this->assertEquals($res49, $obj->toArray()); |
||
502 | |||
503 | $obj->setType("waterfall"); |
||
504 | |||
505 | $res50 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16, "type" => "waterfall"]; |
||
506 | $this->assertEquals($res50, $obj->toArray()); |
||
507 | |||
508 | $obj->setVisible(1); |
||
509 | |||
510 | $res51 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16, "type" => "waterfall", "visible" => 1]; |
||
511 | $this->assertEquals($res51, $obj->toArray()); |
||
512 | |||
513 | $obj->setXAxis(43); |
||
514 | |||
515 | $res52 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16, "type" => "waterfall", "visible" => 1, "xAxis" => 43]; |
||
516 | $this->assertEquals($res52, $obj->toArray()); |
||
517 | |||
518 | $obj->setYAxis(21); |
||
519 | |||
520 | $res53 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16, "type" => "waterfall", "visible" => 1, "xAxis" => 43, "yAxis" => 21]; |
||
521 | $this->assertEquals($res53, $obj->toArray()); |
||
522 | |||
523 | $obj->setZIndex(29); |
||
524 | |||
525 | $res54 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16, "type" => "waterfall", "visible" => 1, "xAxis" => 43, "yAxis" => 21, "zIndex" => 29]; |
||
526 | $this->assertEquals($res54, $obj->toArray()); |
||
527 | |||
528 | $obj->setZoneAxis("88421adabea658556aa3ab6c6181afad"); |
||
529 | |||
530 | $res55 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16, "type" => "waterfall", "visible" => 1, "xAxis" => 43, "yAxis" => 21, "zIndex" => 29, "zoneAxis" => "88421adabea658556aa3ab6c6181afad"]; |
||
531 | $this->assertEquals($res55, $obj->toArray()); |
||
532 | |||
533 | $obj->setZones(["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]); |
||
534 | |||
535 | $res56 = ["allowDrillToNode" => "true", "allowPointSelect" => 1, "alternateStartingDirection" => 1, "animation" => 0, "animationLimit" => 13, "borderColor" => "97da935a74593c55d78be9d1295aa994", "borderWidth" => 84, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorByPoint" => 1, "colorIndex" => 51, "colors" => ["colors" => "62848e3ce5804aa985513a7922ff87b2"], "crisp" => 1, "cropThreshold" => 11, "cursor" => "crosshair", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => [], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 1, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "ignoreHiddenPoint" => 1, "index" => 2, "interactByLeaf" => true, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "layoutAlgorithm" => "strip", "layoutStartingDirection" => "horizontal", "legendIndex" => 25, "levelIsConstant" => "false", "levels" => ["levels" => "836eb5e382b5d9f430df48883fca918e"], "linkedTo" => "914fab47afc86331ec62837807a29419", "maxPointWidth" => 94, "name" => "b068931cc450442b63f5b3d276ea4297", "opacity" => 37, "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "selected" => 1, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 0, "skipKeyboardNavigation" => 1, "sortIndex" => 73, "states" => [], "stickyTracking" => 1, "tooltip" => [], "turboThreshold" => 16, "type" => "waterfall", "visible" => 1, "xAxis" => 43, "yAxis" => 21, "zIndex" => 29, "zoneAxis" => "88421adabea658556aa3ab6c6181afad", "zones" => ["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]]; |
||
536 | $this->assertEquals($res56, $obj->toArray()); |
||
537 | } |
||
540 |