Issue
Is there a way to make a java.awt.Font strike through?
Solution
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);
Answered By - richs
Answer Checked By - Katrina (JavaFixing Volunteer)