()
| 221 | } |
| 222 | |
| 223 | apply_tick_styling() { |
| 224 | // Applies current tick styling to all displayed ticks |
| 225 | if (this.g_axisline) { |
| 226 | const tickText = this.g_axisline.selectAll('.tick text'); |
| 227 | applyStyles(tickText, this.model.get('tick_style')); |
| 228 | tickText.attr('transform', this.get_tick_transforms()); |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | get_tick_transforms() { |
| 233 | // parses object and returns a string that can be passed to a D3 as a |
no test coverage detected