(direction: 'x' | 'y')
| 672 | } |
| 673 | |
| 674 | range(direction: 'x' | 'y'): [number, number] { |
| 675 | if (direction === 'x') { |
| 676 | return [0, this.plotareaWidth]; |
| 677 | } else if (direction === 'y') { |
| 678 | return [this.plotareaHeight, 0]; |
| 679 | } |
| 680 | } |
| 681 | |
| 682 | async updateDecorators(print = false) { |
| 683 | if (this.autoLayout) { |
no outgoing calls
no test coverage detected