Hi,
I'm trying to build DiagramNodes with tooltips. However, nothing shows. Documentation sadly doesn't seem to include a sample for tooltips in Diagrams. Here's what I tried:
<DiagramNode Id="node_id" Height="100" Width="100">
<DiagramBpmnShape Type="Shapes.Bpmn" Shape="BpmnShapes.DataSource">
</DiagramBpmnShape>
<NodeShapeStyle Fill="#357BD2" StrokeColor="white"></NodeShapeStyle>
<DiagramNodeAnnotations>
<DiagramNodeAnnotation Content="text for node">
<NodeAnnotationStyle Fill="transparent" Color="white" TextOverflow="TextOverflow.Wrap"></NodeAnnotationStyle>
</DiagramNodeAnnotation>
</DiagramNodeAnnotations>
<NodeTooltip Content="hello from tooltip" OpenOn="TooltipMode.Auto" ShowTipPointer="true">
</NodeTooltip>
</DiagramNode>