I have some problems with the thousandseparator. I set the ColumnMeta like this:
$node->pipe(new ColumnMeta(array(
"max"=>array(
"type" => "number",
"thousandSeparator" => ".",
"decimalPoint" => ",",
"decimals" => 0,
),
)))
to get a German ThousandSeparator (.) and DecimalSeparator (,). It works fine for viewing the report on the screen and also on CSV- and PDF-export. But on a Excel-Export I will get the English settings. There is no special column setting on the Excel-export.
How can I get the German settings also for the Excel export?