IBM BPM, V8.0.1, All platforms > Authoring services in Integration Designer > Developing monitor models > What are monitor models? > Monitor XML schema definition (monitor.xsd) > XML schema (monitor.xsd) description > Visual model elements
ActionsType
ActionsType contains the set of actions that can be performed on the visualization. Six actions are supported: setColor, setText, hideShapes, setDiagramLink, sendHumanTaskNotification, and sendNotification.
- Elements
Name Min-Max Description setColor 0 - n The outline or fill color to be applied to a set of Scalable Vector Graphics (SVG) elements, based on some condition involving KPI and metric values. setText 0 - n The text to be placed at a particular location in the diagram. The text can be dynamic and can include the value of metrics, counters, stopwatches, or KPIs in the related monitoringContext or any KPI context in the monitor model. hideShapes 0 - n The group of shapes to be hidden or shown based on some condition involving KPI and metric values. setDiagramLink 0 -n The ID of another context with a visualization. A user can navigate the diagram associated with the target context when the referenced shapes are clicked on the diagram at run time. sendHumanTaskNotification 0 - n The notification to be sent to the human task widgets (Human Tasks and My Team's Tasks widget) on the same page in the Monitor dashboard space. sendNotification 0 - n The notification to be sent to custom widgets on the same page in the dashboard space. The custom widgets must be designed to accept specific events and the diagram to emit those events. - Attributes
- None
- Restrictions
- None
- Schema definition
<xsd:complexType name="ActionsType"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="setColor" type="mon:SetColorType"/> <xsd:element name="setText" type="mon:SetTextType"/> <xsd:element name="hideShapes" type="mon:HideShapesType"/> <xsd:element name="setDiagramLink" type="mon:SetDiagramLinkType"/> <xsd:element name="sendHumanTaskNotification" type="mon:SetSelectionType"/> <xsd:element name="sendNotification" type="mon:SetSelectionType"/> </xsd:choice> </xsd:complexType>