How to set lineBreakMode to WKInterfaceLabel?

Hello Guys,


I want to set multi line text in my watch app using WKInterfaceLabel but i don't want to cut down my word so i want to give it a lineBreakMode to wordWrap but WKInterfaceLabel doesn't have that kind of property.


Even i did try it with NSAttributedText as well but didn't work.


Here is my code that i tried :


  let font = UIFont.systemFont(ofSize: 15);
let style = NSMutableParagraphStyle();
style.lineBreakMode = .byWordWrapping;
let attributes: [NSAttributedString.Key: Any] = [
.font: font,
.paragraphStyle: style,
];
let attributedString = NSAttributedString(string: getPromptText(), attributes: attributes)
lblDisplayText.setAttributedText(attributedString);