Как добавить цвет фона в таблицу Excel с помощью Apache poi <= версия 3.17 - PullRequest
0 голосов
/ 30 января 2019

У меня есть лист Excel, где я объединяю столбцы и делаю его одним столбцом в строке и пытаюсь добавить цвет фона, но он не работает.

CellStyle cellStyle = workbook.createCellStyle();
Font font = workbook.createFont();
font.setFontHeightInPoints((short)12);
font.setBoldweight(Font.BOLDWEIGHT_BOLD);
cellStyle.setBorderTop((short) 2); // single line border
cellStyle.setBorderBottom((short) 2); // single line border
cellStyle.setFont(font);
cellStyle.setFillBackgroundColor(IndexedColors.LIGHT_CORNFLOWER_BLUE.getIndex());
...