* Remove any filtration and animate.
()
| 9885 | /** |
| 9886 | * Remove any filtration and animate. |
| 9887 | */ reset() { |
| 9888 | return new Promise((resolve, reject)=>{ |
| 9889 | this._animator.reset().then(()=>{ |
| 9890 | this._details.clear(); |
| 9891 | this._details.clearSelection(); |
| 9892 | resolve(); |
| 9893 | }); |
| 9894 | }); |
| 9895 | } |
| 9896 | /** |
| 9897 | * Select cubes by a filter expression. |
| 9898 | * @param search Filter expression, see https://vega.github.io/vega/docs/expressions/ |
no test coverage detected