Users Guide

Modifying Topology Label Length | Presentation Capabilities
258 OMNM 6.5.3 User Guide
Modifying Topology Label Length
Labels default to 13 characters, but you can extend them to a wider size by adding the following
property to the
installDir
/oware/synergy/conf/server-overrides.properties file:
nodes.labels.extended.width=true
Otherwise, you can force an extended label with your Extension so it is automatic. Using your
extension, you can do it within the
PortletProvider#getPortalProperties()
call.
For example:
public Properties getPortalProperties() {
Properties props = new Properties();
props.put("nodes.labels.extended.width", "true");
return props;
}
NOTE:
This allows labels to be much longer but adds the possibility of text bleeding on top of other nodes.