()
| 40 | } |
| 41 | |
| 42 | getAllNames(): string[] { |
| 43 | const rawData = this._getRawData(); |
| 44 | // We find the name from the raw data. In case it's filtered by the legend component. |
| 45 | // Normally, the name can be found in rawData, but can't be found in filtered data will display as gray. |
| 46 | return rawData.mapArray(rawData.getName); |
| 47 | } |
| 48 | |
| 49 | containName(name: string): boolean { |
| 50 | const rawData = this._getRawData(); |