* Gets the current insight with signal values.
()
| 804 | * Gets the current insight with signal values. |
| 805 | */ |
| 806 | getInsight(): Insight { |
| 807 | const insight = { ...this.insight }; |
| 808 | insight.signalValues = this.getSignalValues(); |
| 809 | return insight; |
| 810 | } |
| 811 | |
| 812 | /** |
| 813 | * Gets column stats from current data (filtered or all). |
no test coverage detected