PdfAnnotations Yellow Mark
Is any way to suppress the yellow annotation marker ? I create diagrams with mouse-over tooltips, one for each record in diagram. This creates many yellow rectangles. I would suppress them if possible.
final PdfAnnotation annotation = PdfAnnotation.createStamp(writer,
new Rectangle(300, 600, 400, 700), "Text", "#Comment");
annotation.setAppearance(PdfName.N, writer.getDirectContent().createTemplate(100, 100));
writer.addAnnotation(annotation);I create them using openpdf java library.
Here a sample image:

