https://issues.apache.org/bugzilla/show_bug.cgi?id=52484
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #1 from Yegor Kozlov <[email protected]> 2012-01-19 17:26:20 UTC --- Rich text in SXSSF is not supported. All formatting applies via RichTextString.applyFont() will be lost. However you can style cells as a whole. Create a cell style with a superscript font and pass it to Cell.setCellStyle: CellStyle style = wb.createStyle(); style.setFont(footnoteFontSuper); ... cell.setCellStyle(style); Yegor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
