Is it possible to obtain the column key inside a cell renderer?
For example in the `CustomRenderComponent Demo the value of the cell and the row data is injected like this:
@Input() value: string | number;
@Input() rowData: any;
is there a way to get the current column key? Something like:
@input column: string;
or get a Cell instance?
The Cell
class has method like this:
getColumn(): Column {
return this.column;
}