* Gets column stats from current data (filtered or all). * @param column Column to get stats for.
(column)
| 9957 | * Gets column stats from current data (filtered or all). |
| 9958 | * @param column Column to get stats for. |
| 9959 | */ getColumnStats(column) { |
| 9960 | return this._dataScope.hasFilteredData() ? this._dataScope.getFilteredColumnStats(column.name) : column.stats; |
| 9961 | } |
| 9962 | /** |
| 9963 | * Gets current signal values. |
| 9964 | */ getSignalValues() { |
no test coverage detected