Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
How can you change the font size and color of a 2D label? I am using my 2D label to update instructions, but it's extremely hard to read the small font. I don't see how to do it from the UI editor, are there javascript options? Currently use javascript to update the text content on each step of a sequence.
Solved! Go to Solution.
You can make a custom css class (in the application editor) and enter the name of the class in the class field of the label:
.YourClassNameHere {
font-size: 15px;
color: #515859;
}
You can make a custom css class (in the application editor) and enter the name of the class in the class field of the label:
.YourClassNameHere {
font-size: 15px;
color: #515859;
}