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
VisualizationType
VisualizationType is used to relate a given context (either a monitoring context or a KPI context) to a set of shapeSets, actions, and a particular Scalable Vector Graphics (SVG) file.
- Elements
Name Min-max Description shapeSets 0 - 1 The collection of IDs of elements identified in the associated SVG file. ShapeSets are referred to from within the action elements to describe the collection of SVG elements that should be affected by the action. actions 0 - 1 The container for the collection of action elements that describe how the SVG file is updated based on metric and KPI values. svgDocument 1 - 1 A reference to the external SVG file that contains the graphical image that represents the context associated with this visualization. - Attributes
Name Required or optional Type Description Context Required String A reference to the monitoring context or KPI context that is represented by this visualization. - Restrictions
- Only one visualization can be associated with a context.
- The element referenced by the context attribute must exist and be a context.
- Schema definition
<xsd:complexType name="VisualizationType"> <xsd:sequence> <xsd:element name="shapeSets" type="mon:ShapeSetsType" minOccurs="0" maxOccurs="1"/> <xsd:element name="actions" type="mon:ActionsType" minOccurs="0" maxOccurs="1"/> <xsd:element name="svgDocument" type="mon:SvgDocumentType" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="context" type="xsd:string" use="required"/> </xsd:complexType>