我正在尝试为行中的特定部分设置背景颜色。
Cell myCell = new PCell(tablename);
myCell.setBorder(Rectangle.NO_BORDER);
myCell.setVerticalAlignment(Element.ALIGN_TOP);
if(mycondition) {
myCell.setFixedHeight(2f);
myCell.setBackgroundColor(colorFourteenDay);
}
mytable.addCell(myCell);
但是setBackgroundColor
正在为整行应用颜色,所以你能帮我设置如何为行的特定部分设置颜色。
myCell.setBorder(Rectangle.NO_BORDER);
......使用此代码部分后,边框即将到来