()
| 208 | } |
| 209 | |
| 210 | tickformat_changed() { |
| 211 | this.tick_format = this.generate_tick_formatter(); |
| 212 | this.axis.tickFormat(this.tick_format); |
| 213 | if (this.g_axisline) { |
| 214 | this.g_axisline.call(this.axis); |
| 215 | } |
| 216 | this.apply_tick_styling(); |
| 217 | } |
| 218 | |
| 219 | tick_labels_changed() { |
| 220 | this.tickformat_changed(); |
no test coverage detected