The default action of the link in the content of the RadDiagram shape is prevented because the dragging operation starts when you click with the mouse.
What you can do is to attach to the OnClick event and implement the redirect to another page. Here is a base example of how to proceed:
<telerik:RadDiagramID="RadDiagram1"runat="server"><ClientEventsOnClick="diagramClick" /><ShapesCollection><telerik:DiagramShapeId="cocktails"Type="Rectangle"X="50"Y="50"Width="310"Height="40"><ContentSettingsText="Content" /></telerik:DiagramShape></ShapesCollection></telerik:RadDiagram><script>functiondiagramClick(e) {
if (e.item instanceof kendo.dataviz.diagram.Shape) {
var id = e.item.options.id;
var content = e.item.options.content.text;
var message = "ShapeID: " + id + "; ShapeContent: " + content;
console.log(message);
}
}
</script>
Hello Rumen,
thanks a lot!
!