private void addGroupLabel(
     SheetGraphics graphics,
     FavorableTraitContent content,
     IIdentifiedTraitTypeGroup group,
     Position position) {
   if (content.hasGroupLabel()) {
     return;
   }
   String groupLabel = content.getGroupLabel(group.getGroupId());
   graphics.drawVerticalText(groupLabel, position, PdfContentByte.ALIGN_CENTER);
 }