()
| 664 | } |
| 665 | |
| 666 | redraw_axisline() { |
| 667 | // TODO: This call might not be necessary |
| 668 | // TODO: Doesn't do what it states. |
| 669 | // Has to redraw from a clean slate |
| 670 | this.update_scales(); |
| 671 | |
| 672 | //animate axis and grid lines on domain changes |
| 673 | const animate = true; |
| 674 | this.set_tick_values(animate); |
| 675 | this.tickformat_changed(); |
| 676 | this.update_grid_lines(animate); |
| 677 | } |
| 678 | |
| 679 | rescale_axis() { |
| 680 | //function to be called when the range of the axis has been updated |
nothing calls this directly
no test coverage detected