This question is locked. New answers and comments are not allowed.
publicclassPrimitiveShape : RadDiagramShapeBase{publicPrimitiveShape() :base(){this.DefaultStyleKey =typeof(PrimitiveShape);}}I'm trying to implement a simple primitive shape by inheriting from RadDiagramShapeBase, but when adding it to the diagram no connectors is showing. Any suggestions on what I'm doing wrong here would be appreciated.<ResourceDictionaryxmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"xmlns:local="clr-namespace:GSAB.RSProduction.Modules.OfficeTools.ViewModel.Workflow"><StyleTargetType="local:PrimitiveShape"><SetterProperty="Template"><Setter.Value><ControlTemplateTargetType="local:PrimitiveShape"><BorderBackground="{TemplateBinding Background}"BorderBrush="{TemplateBinding BorderBrush}"BorderThickness="{TemplateBinding BorderThickness}"><telerik:RadDiagramShapeGeometry="{telerik:CommonShape ShapeType=OctagonShape}"/></Border></ControlTemplate></Setter.Value></Setter></Style></ResourceDictionary>