Hello,
in the widget Table:: I have the possibility to format each column and field by using label, align, decimal, decimalPoint properties (see below).
I tried the same in PivotTable:: but without any success!
Table::create(array(
"dataStore"=>$this->dataStore('sales_by_customer'),
"columns"=>array(
"customerName"=f>array(
"label"=>"Customer"
),
"dollar_sales"=>array(
"type"=>"number",
"label"=>"Amount",
"prefix"=>"$",
)
),
Any idea how to format for example the "price" values in a PivotTable for each summary field?
Kind regards