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

SetDiagramLinkType

SetDiagramLinkType defines the action that allows a user to navigate between diagrams at run time using mouse clicks. This action specifies a target context and a shape set that, when clicked, causes the diagram to be replaced with the diagram associated with the target context.

Elements

Name Min-max Description
shapeSet 1 - n One or more shapeSets that define the list of Scalable Vector Graphics (SVG) elements to be enabled with a hyperlink that will cause the action to navigate to the target diagram.

Attributes

Name Required or optional Type Description
targetContext Required String An XPath reference to a monitoring context or KPI context, whose visualization will be shown when the referenced shape set is clicked. The reference must be an absolute reference with the following format:
/Monitor_Model_ID/MDM/Context_ID/

Restrictions

  • All restrictions for ActionType apply to SetDiagramLinkType.

  • All shapeSet references must be in the set of ids for shapeSets in this same visualization.

  • A warning appears if the element referenced by the targetContext attribute does not exist.

  • If it exists, the element referenced by the targetContext attribute must be a context.

Schema definition

<xsd:complexType name="SetDiagramLinkType">
    <xsd:complexContent>
        <xsd:extension base="mon:ActionType">
            <xsd:sequence>
                <!-- String value must be the name of a shape set defined 
                      in the <shapeSets> element -->
                <xsd:element name="shapeSet" type="mon:ShapeSetRefType" 
                      minOccurs="1" maxOccurs="unbounded"/>
            </xsd:sequence>
            <xsd:attribute name="targetContext" type="xsd:string" 
                  use="required"/>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

Visual model elements