Styling > Customizing Off-Page Connectors > Customizing Off-Page Connector States and Alarms

The graphical representation of off-page connectors does not take into account the states set in the business objects. It is only affected by the object type and the alarms, if any (but alarm counts and alarm balloons are not represented).

The following properties allow you to customize the graphic representation of alarms in off-page connectors:

Table 11.5 CSS Properties for Off-Page Connector Alarms Representation
Property Name 
Type 
Default Value 
Description 
primaryAlarmState 
IltAlarmStateEnum 
IltAlarmStateEnum.Raw 
Determines whether the raw alarms or the impact alarms are displayed as the primary alarm state. Possible values are: 
IltAlarmStateEnum.Raw or IltAlarmStateEnum.Impact 
alarmBorderColor 
Color 
transparent (null
Defines the color used to represent the alarm border around the base. Setting the value to null resets the alarm border color to its default value. 
alarmBorderWidth 
int 
2 pixels 
Defines the width of the alarm border. 
alarmBorderVisible 
boolean 
true 
Indicates whether the alarm border is visible or not around the object base. 
alarmColorVisible 
boolean 
true 
Determines whether the alarm color is visible or not in the object value. 

How to Customize the Alarm Representation in Off-Page Connectors

The following CSS extract shows how you can customize the graphic representation of off-page connectors so that they do not display alarm information:

object."ilog.tgo.model.IltOffPageConnector" {
  alarmColorVisible: false;
  alarmBorderVisible: false;
}