()
| 128 | } |
| 129 | |
| 130 | update_labels() { |
| 131 | // update the names in mark_data |
| 132 | const labels = this.get_labels(); |
| 133 | this.mark_data.forEach((element, i) => { |
| 134 | element.name = labels[i]; |
| 135 | }); |
| 136 | this.trigger('labels_updated'); |
| 137 | } |
| 138 | |
| 139 | get_labels() { |
| 140 | // Function to set the labels appropriately. |
nothing calls this directly
no test coverage detected