Completed
Last Updated: 23 Mar 2015 09:42 by ADMIN
ADMIN
Stefan
Created on: 06 Mar 2015 11:51
Category: PivotGrid
Type: Bug Report
0
FIX. RadPivotGrid - when exporting to excel the numbers are being exported as strings
Workaround:

        void exporter_PivotExcelCellFormatting(object sender, ExcelPivotCellExportingEventArgs e)
        {
            double d;
            if (double.TryParse(e.Cell.Text, out d))
            {
                e.DataType = "double";
            }
        }
0 comments