I am setting up my graph view template in Soley Studio. In some pre-installed solutions I saw that nodes in graph view have been visualized with an icon or graphic instead of a circle, rectangle, etc.
I want to define my properties for a node class in such way, that it shows a gear icon or something similar. Which <property>
do I have to use?
I copied one from another solution, but it does not change anything:
<Style DataSource=".ProdFunction" VisualTarget=”Node”>
<!-- View Properties -->
<Properties>
<Property Name="StyleName" Value="ShapeOrImageNodeStyle" />
<Property Name="Image">
<Value IsReference="true">icon</Value>
</Property>
<Property Name="ColorizeImage" Value = "false" />
<Property Name="Width" Value="60" />
<Property Name="Height" Value="60" />
</Properties>
</Style>
I wanted to use <Property Name="Image"> <Value IsReference="true">icon</Value></Property>
. But nothing changes. How do I refer to the “icon” I want to have? Adding it to the Images folder did not help.