You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
I've added floatFormattingProperties by .withFloatFormattingProperties but my Container consists of Float-values but no Double-values. So during the addGenericDataRow - Method of the ExportToExcelUtility-Class, the column will be found as a configured floatformattingcolumn but there will be checked, if the values are instanceofDoubleor BigDecimal. Otherwise it will be ignored.
The result is, that the generated excel-sheet does not have the float-values included because they were ignored during the generationprocess.
The instanceof - check must be extended to include Float!
The text was updated successfully, but these errors were encountered:
I can confirm this Issue. Interestingly, if i don't list list the columns in withFloatFormattingProperties, the values are corrcetly exported to Excel as floats.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I've added floatFormattingProperties by
.withFloatFormattingProperties
but my Container consists of Float-values but no Double-values. So during theaddGenericDataRow
- Method of theExportToExcelUtility
-Class, the column will be found as a configured floatformattingcolumn but there will be checked, if the values areinstanceof
Double
orBigDecimal
. Otherwise it will be ignored.The result is, that the generated excel-sheet does not have the float-values included because they were ignored during the generationprocess.
The instanceof - check must be extended to include Float!
The text was updated successfully, but these errors were encountered: