Is there a way to make a java.awt.Font strike through?
So i found this, which works.
Font font = new Font("helvetica", Font.PLAIN, 12); Map attributes = font.getAttributes(); attributes.put(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON); Font newFont = new Font(attributes);