(name)
| 153069 | } |
| 153070 | |
| 153071 | getColumn(name) { |
| 153072 | for (let i = 0; i < this.columns.length; i++) { |
| 153073 | if (this.columns[i].name == name) { |
| 153074 | return this.columns[i]; |
| 153075 | } |
| 153076 | } |
| 153077 | } |
| 153078 | |
| 153079 | runExpressionOnColumn(datum, ex) { |
| 153080 | const actualDataValue = datum[ex.name]; |