У меня есть лист 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());