Is it possible for KoolReport to have the 'row' controls be variables? Can you show me how to accomplish this. I tried to do it with inputs, however the parameters :row1 didn't work. Can you show me how to accomplish this?
for example: Select parameter :row1 (Customer or client )
`
$node2 ->pipe(new Pivot(array(
'dimensions'=>array(
'column'=>'yr,qtr,mon',
'row'=>':row1, productName'
),
So this could change to
$node2 ->pipe(new Pivot(array(
'dimensions'=>array(
'column'=>'yr,qtr,mon',
'row'=>'client, productName'
),
OR
$node2 ->pipe(new Pivot(array(
'dimensions'=>array(
'column'=>'yr,qtr,mon',
'row'=>'customer, productName'
),
Depending on the select choice.