* Select cubes by a filter expression. * @param search Filter expression, see https://vega.github.io/vega/docs/expressions/
(search: Search)
| 739 | * @param search Filter expression, see https://vega.github.io/vega/docs/expressions/ |
| 740 | */ |
| 741 | select(search: Search) { |
| 742 | return new Promise<void>((resolve, reject) => { |
| 743 | this._animator.select(search).then(() => { |
| 744 | this._details.populate(this._dataScope.selection); |
| 745 | resolve(); |
| 746 | }); |
| 747 | }); |
| 748 | } |
| 749 | |
| 750 | /** |
| 751 | * Removes any selection. |
no test coverage detected