| Conditions | 1 |
| Paths | 1 |
| Total Lines | 273 |
| Code Lines | 163 |
| 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 |
||
| 222 | public function testToArray() { |
||
| 223 | |||
| 224 | $obj = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\HighchartsAreasplinerange(true); |
||
| 225 | |||
| 226 | $obj->setAllowPointSelect(0); |
||
| 227 | |||
| 228 | $res1 = ["allowPointSelect" => 0]; |
||
| 229 | $this->assertEquals($res1, $obj->toArray()); |
||
| 230 | |||
| 231 | $obj->setAnimation(0); |
||
| 232 | |||
| 233 | $res2 = ["allowPointSelect" => 0, "animation" => 0]; |
||
| 234 | $this->assertEquals($res2, $obj->toArray()); |
||
| 235 | |||
| 236 | $obj->setAnimationLimit(44); |
||
| 237 | |||
| 238 | $res3 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44]; |
||
| 239 | $this->assertEquals($res3, $obj->toArray()); |
||
| 240 | |||
| 241 | $obj->setClassName("6f66e878c62db60568a3487869695820"); |
||
| 242 | |||
| 243 | $res4 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820"]; |
||
| 244 | $this->assertEquals($res4, $obj->toArray()); |
||
| 245 | |||
| 246 | $obj->setColor("70dda5dfb8053dc6d1c492574bce9bfd"); |
||
| 247 | |||
| 248 | $res5 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd"]; |
||
| 249 | $this->assertEquals($res5, $obj->toArray()); |
||
| 250 | |||
| 251 | $obj->setColorIndex(46); |
||
| 252 | |||
| 253 | $res6 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46]; |
||
| 254 | $this->assertEquals($res6, $obj->toArray()); |
||
| 255 | |||
| 256 | $obj->setConnectNulls(1); |
||
| 257 | |||
| 258 | $res7 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1]; |
||
| 259 | $this->assertEquals($res7, $obj->toArray()); |
||
| 260 | |||
| 261 | $obj->setCropThreshold(95); |
||
| 262 | |||
| 263 | $res8 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95]; |
||
| 264 | $this->assertEquals($res8, $obj->toArray()); |
||
| 265 | |||
| 266 | $obj->setCursor("crosshair"); |
||
| 267 | |||
| 268 | $res9 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair"]; |
||
| 269 | $this->assertEquals($res9, $obj->toArray()); |
||
| 270 | |||
| 271 | $obj->setDashStyle("LongDashDotDot"); |
||
| 272 | |||
| 273 | $res10 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot"]; |
||
| 274 | $this->assertEquals($res10, $obj->toArray()); |
||
| 275 | |||
| 276 | $obj->setData(["data" => "8d777f385d3dfec8815d20f7496026dc"]); |
||
| 277 | |||
| 278 | $res11 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"]]; |
||
| 279 | $this->assertEquals($res11, $obj->toArray()); |
||
| 280 | |||
| 281 | $obj->setDataLabels(["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"]); |
||
| 282 | |||
| 283 | $res12 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"]]; |
||
| 284 | $this->assertEquals($res12, $obj->toArray()); |
||
| 285 | |||
| 286 | $obj->setDescription("67daf92c833c41c95db874e18fcb2786"); |
||
| 287 | |||
| 288 | $res13 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786"]; |
||
| 289 | $this->assertEquals($res13, $obj->toArray()); |
||
| 290 | |||
| 291 | $obj->setEnableMouseTracking(1); |
||
| 292 | |||
| 293 | $res14 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1]; |
||
| 294 | $this->assertEquals($res14, $obj->toArray()); |
||
| 295 | |||
| 296 | $obj->setEvents(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsEvents()); |
||
| 297 | |||
| 298 | $res15 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => []]; |
||
| 299 | $this->assertEquals($res15, $obj->toArray()); |
||
| 300 | |||
| 301 | $obj->setExposeElementToA11y(0); |
||
| 302 | |||
| 303 | $res16 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0]; |
||
| 304 | $this->assertEquals($res16, $obj->toArray()); |
||
| 305 | |||
| 306 | $obj->setFillColor("1fde055d3ff900e04ca08bc82066d7fd"); |
||
| 307 | |||
| 308 | $res17 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd"]; |
||
| 309 | $this->assertEquals($res17, $obj->toArray()); |
||
| 310 | |||
| 311 | $obj->setFillOpacity(31); |
||
| 312 | |||
| 313 | $res18 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31]; |
||
| 314 | $this->assertEquals($res18, $obj->toArray()); |
||
| 315 | |||
| 316 | $obj->setFindNearestPointBy("xy"); |
||
| 317 | |||
| 318 | $res19 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy"]; |
||
| 319 | $this->assertEquals($res19, $obj->toArray()); |
||
| 320 | |||
| 321 | $obj->setGetExtremesFromAll(1); |
||
| 322 | |||
| 323 | $res20 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1]; |
||
| 324 | $this->assertEquals($res20, $obj->toArray()); |
||
| 325 | |||
| 326 | $obj->setId("b80bb7740288fda1f201890375a60c8f"); |
||
| 327 | |||
| 328 | $res21 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f"]; |
||
| 329 | $this->assertEquals($res21, $obj->toArray()); |
||
| 330 | |||
| 331 | $obj->setIndex(24); |
||
| 332 | |||
| 333 | $res22 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24]; |
||
| 334 | $this->assertEquals($res22, $obj->toArray()); |
||
| 335 | |||
| 336 | $obj->setKeys(["keys" => "14f802e1fba977727845e8872c1743a7"]); |
||
| 337 | |||
| 338 | $res23 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"]]; |
||
| 339 | $this->assertEquals($res23, $obj->toArray()); |
||
| 340 | |||
| 341 | $obj->setLegendIndex(38); |
||
| 342 | |||
| 343 | $res24 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38]; |
||
| 344 | $this->assertEquals($res24, $obj->toArray()); |
||
| 345 | |||
| 346 | $obj->setLineColor("c2580eebfdbdb9fc629f50cc147c3f63"); |
||
| 347 | |||
| 348 | $res25 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63"]; |
||
| 349 | $this->assertEquals($res25, $obj->toArray()); |
||
| 350 | |||
| 351 | $obj->setLineWidth(44); |
||
| 352 | |||
| 353 | $res26 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44]; |
||
| 354 | $this->assertEquals($res26, $obj->toArray()); |
||
| 355 | |||
| 356 | $obj->setLinecap("square"); |
||
| 357 | |||
| 358 | $res27 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square"]; |
||
| 359 | $this->assertEquals($res27, $obj->toArray()); |
||
| 360 | |||
| 361 | $obj->setLinkedTo("914fab47afc86331ec62837807a29419"); |
||
| 362 | |||
| 363 | $res28 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419"]; |
||
| 364 | $this->assertEquals($res28, $obj->toArray()); |
||
| 365 | |||
| 366 | $obj->setName("b068931cc450442b63f5b3d276ea4297"); |
||
| 367 | |||
| 368 | $res29 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297"]; |
||
| 369 | $this->assertEquals($res29, $obj->toArray()); |
||
| 370 | |||
| 371 | $obj->setNegativeColor("52fe4d3a854b01e25193b4f35fc2040e"); |
||
| 372 | |||
| 373 | $res30 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e"]; |
||
| 374 | $this->assertEquals($res30, $obj->toArray()); |
||
| 375 | |||
| 376 | $obj->setNegativeFillColor("a966442d64e00bf8663e7c5d9708074a"); |
||
| 377 | |||
| 378 | $res31 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a"]; |
||
| 379 | $this->assertEquals($res31, $obj->toArray()); |
||
| 380 | |||
| 381 | $obj->setPoint(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsPoint()); |
||
| 382 | |||
| 383 | $res32 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => []]; |
||
| 384 | $this->assertEquals($res32, $obj->toArray()); |
||
| 385 | |||
| 386 | $obj->setPointDescriptionFormatter("b5fd0c15b3ca81f726e2c7b93907ba36"); |
||
| 387 | |||
| 388 | $res33 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36"]; |
||
| 389 | $this->assertEquals($res33, $obj->toArray()); |
||
| 390 | |||
| 391 | $obj->setPointInterval(50); |
||
| 392 | |||
| 393 | $res34 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50]; |
||
| 394 | $this->assertEquals($res34, $obj->toArray()); |
||
| 395 | |||
| 396 | $obj->setPointIntervalUnit("year"); |
||
| 397 | |||
| 398 | $res35 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year"]; |
||
| 399 | $this->assertEquals($res35, $obj->toArray()); |
||
| 400 | |||
| 401 | $obj->setPointPlacement("between"); |
||
| 402 | |||
| 403 | $res36 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between"]; |
||
| 404 | $this->assertEquals($res36, $obj->toArray()); |
||
| 405 | |||
| 406 | $obj->setPointStart(64); |
||
| 407 | |||
| 408 | $res37 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64]; |
||
| 409 | $this->assertEquals($res37, $obj->toArray()); |
||
| 410 | |||
| 411 | $obj->setSelected(0); |
||
| 412 | |||
| 413 | $res38 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0]; |
||
| 414 | $this->assertEquals($res38, $obj->toArray()); |
||
| 415 | |||
| 416 | $obj->setShadow(0); |
||
| 417 | |||
| 418 | $res39 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0]; |
||
| 419 | $this->assertEquals($res39, $obj->toArray()); |
||
| 420 | |||
| 421 | $obj->setShowCheckbox(0); |
||
| 422 | |||
| 423 | $res40 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0]; |
||
| 424 | $this->assertEquals($res40, $obj->toArray()); |
||
| 425 | |||
| 426 | $obj->setShowInLegend(1); |
||
| 427 | |||
| 428 | $res41 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1]; |
||
| 429 | $this->assertEquals($res41, $obj->toArray()); |
||
| 430 | |||
| 431 | $obj->setSkipKeyboardNavigation(1); |
||
| 432 | |||
| 433 | $res42 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1]; |
||
| 434 | $this->assertEquals($res42, $obj->toArray()); |
||
| 435 | |||
| 436 | $obj->setStates(new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Areasplinerange\HighchartsStates()); |
||
| 437 | |||
| 438 | $res43 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => []]; |
||
| 439 | $this->assertEquals($res43, $obj->toArray()); |
||
| 440 | |||
| 441 | $obj->setStickyTracking(0); |
||
| 442 | |||
| 443 | $res44 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0]; |
||
| 444 | $this->assertEquals($res44, $obj->toArray()); |
||
| 445 | |||
| 446 | $obj->setTooltip(["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"]); |
||
| 447 | |||
| 448 | $res45 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"]]; |
||
| 449 | $this->assertEquals($res45, $obj->toArray()); |
||
| 450 | |||
| 451 | $obj->setTrackByArea(1); |
||
| 452 | |||
| 453 | $res46 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1]; |
||
| 454 | $this->assertEquals($res46, $obj->toArray()); |
||
| 455 | |||
| 456 | $obj->setTurboThreshold(69); |
||
| 457 | |||
| 458 | $res47 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69]; |
||
| 459 | $this->assertEquals($res47, $obj->toArray()); |
||
| 460 | |||
| 461 | $obj->setType("waterfall"); |
||
| 462 | |||
| 463 | $res48 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall"]; |
||
| 464 | $this->assertEquals($res48, $obj->toArray()); |
||
| 465 | |||
| 466 | $obj->setVisible(0); |
||
| 467 | |||
| 468 | $res49 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0]; |
||
| 469 | $this->assertEquals($res49, $obj->toArray()); |
||
| 470 | |||
| 471 | $obj->setXAxis(93); |
||
| 472 | |||
| 473 | $res50 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93]; |
||
| 474 | $this->assertEquals($res50, $obj->toArray()); |
||
| 475 | |||
| 476 | $obj->setYAxis(97); |
||
| 477 | |||
| 478 | $res51 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97]; |
||
| 479 | $this->assertEquals($res51, $obj->toArray()); |
||
| 480 | |||
| 481 | $obj->setZIndex(65); |
||
| 482 | |||
| 483 | $res52 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97, "zIndex" => 65]; |
||
| 484 | $this->assertEquals($res52, $obj->toArray()); |
||
| 485 | |||
| 486 | $obj->setZoneAxis("88421adabea658556aa3ab6c6181afad"); |
||
| 487 | |||
| 488 | $res53 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97, "zIndex" => 65, "zoneAxis" => "88421adabea658556aa3ab6c6181afad"]; |
||
| 489 | $this->assertEquals($res53, $obj->toArray()); |
||
| 490 | |||
| 491 | $obj->setZones(["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]); |
||
| 492 | |||
| 493 | $res54 = ["allowPointSelect" => 0, "animation" => 0, "animationLimit" => 44, "className" => "6f66e878c62db60568a3487869695820", "color" => "70dda5dfb8053dc6d1c492574bce9bfd", "colorIndex" => 46, "connectNulls" => 1, "cropThreshold" => 95, "cursor" => "crosshair", "dashStyle" => "LongDashDotDot", "data" => ["data" => "8d777f385d3dfec8815d20f7496026dc"], "dataLabels" => ["dataLabels" => "d4d108fe6659fac79420fa083ef3adf2"], "description" => "67daf92c833c41c95db874e18fcb2786", "enableMouseTracking" => 1, "events" => [], "exposeElementToA11y" => 0, "fillColor" => "1fde055d3ff900e04ca08bc82066d7fd", "fillOpacity" => 31, "findNearestPointBy" => "xy", "getExtremesFromAll" => 1, "id" => "b80bb7740288fda1f201890375a60c8f", "index" => 24, "keys" => ["keys" => "14f802e1fba977727845e8872c1743a7"], "legendIndex" => 38, "lineColor" => "c2580eebfdbdb9fc629f50cc147c3f63", "lineWidth" => 44, "linecap" => "square", "linkedTo" => "914fab47afc86331ec62837807a29419", "name" => "b068931cc450442b63f5b3d276ea4297", "negativeColor" => "52fe4d3a854b01e25193b4f35fc2040e", "negativeFillColor" => "a966442d64e00bf8663e7c5d9708074a", "point" => [], "pointDescriptionFormatter" => "b5fd0c15b3ca81f726e2c7b93907ba36", "pointInterval" => 50, "pointIntervalUnit" => "year", "pointPlacement" => "between", "pointStart" => 64, "selected" => 0, "shadow" => 0, "showCheckbox" => 0, "showInLegend" => 1, "skipKeyboardNavigation" => 1, "states" => [], "stickyTracking" => 0, "tooltip" => ["tooltip" => "ddbfc1b6aa0ad4d79c5dac7aa3b44888"], "trackByArea" => 1, "turboThreshold" => 69, "type" => "waterfall", "visible" => 0, "xAxis" => 93, "yAxis" => 97, "zIndex" => 65, "zoneAxis" => "88421adabea658556aa3ab6c6181afad", "zones" => ["zones" => "26f94136f5db8afd4e9df1e512f7fdc5"]]; |
||
| 494 | $this->assertEquals($res54, $obj->toArray()); |
||
| 495 | } |
||
| 498 |