View | Details | Raw Unified | Return to issue 114111
Collapse All | Expand All

(-)a/reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java (-1 / +3 lines)
Lines 624-630 Link Here
624
                final Section tableColumnProperties = new Section();
624
                final Section tableColumnProperties = new Section();
625
                tableColumnProperties.setType("table-column-properties");
625
                tableColumnProperties.setType("table-column-properties");
626
                tableColumnProperties.setNamespace(style.getNamespace());
626
                tableColumnProperties.setNamespace(style.getNamespace());
627
                tableColumnProperties.setAttribute(style.getNamespace(), "column-width", columnWidth + getUnitsOfMeasure(null));
627
                final String width = String.format("%f", columnWidth);
628
                tableColumnProperties.setAttribute(style.getNamespace(),
629
                        "column-width", width + getUnitsOfMeasure(null));
628
                style.addNode(tableColumnProperties);
630
                style.addNode(tableColumnProperties);
629
631
630
                final AttributeList myAttrList = new AttributeList();
632
                final AttributeList myAttrList = new AttributeList();

Return to issue 114111