()
| 681 | } |
| 682 | |
| 683 | render() { |
| 684 | if (this.notifyPlugins(class="st">'beforeRender', {cancelable: true}) === false) { |
| 685 | return; |
| 686 | } |
| 687 | |
| 688 | if (animator.has(this)) { |
| 689 | if (this.attached && !animator.running(this)) { |
| 690 | animator.start(this); |
| 691 | } |
| 692 | } else { |
| 693 | this.draw(); |
| 694 | onAnimationsComplete({chart: this}); |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | draw() { |
| 699 | let i; |
no test coverage detected