(options)
| 317 | } |
| 318 | |
| 319 | init(options) { |
| 320 | |
| 321 | var self = this; |
| 322 | |
| 323 | self.options = options; |
| 324 | |
| 325 | this.initDataRange(options); |
| 326 | |
| 327 | this.context = self.options.context || '2d'; |
| 328 | |
| 329 | if (self.options.zIndex) { |
| 330 | this.canvasLayer && this.canvasLayer.setZIndex(self.options.zIndex); |
| 331 | } |
| 332 | |
| 333 | this.initAnimator(); |
| 334 | } |
| 335 | |
| 336 | addAnimatorEvent() {} |
| 337 |
no test coverage detected