Hi,
My report is getting data from CSV. After filtering and piping through the processes. the data goes through the Transpose() process and output to DataStore.
I need to add 1 new data row (which is created on the fly), to go though the process and output to the DataStore together with the rest of the data (from CSV datasource).
After Transpose(), the new row must appear in column c1. I tried different ways but not successful. May be someone can point me to the right direction.
Example:
protected function setup()
{
$newrow=array(....);
$this->src('csvdata')
......
->saveTo($temp);
$temp->pipe(new Transpose())
->pipe($this->dataStore('result'));
Thank you.