(selectedIds: powerbiVisualsApi.extensibility.ISelectionId[])
| 168 | } |
| 169 | |
| 170 | applySelection(selectedIds: powerbiVisualsApi.extensibility.ISelectionId[]) { |
| 171 | if (selectedIds.length) { |
| 172 | this.selectionManager.select(selectedIds, false); |
| 173 | } else { |
| 174 | this.clearSelection(); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | clearSelection() { |
| 179 | this.selectionManager.clear(); |
no test coverage detected