I'm looking at using RadDiagrams for a dynamic workflow flow dashboard. I'd like to be able to format the text inside the shape with underlines, bolds and line feeds, etc. I'd like to see something implemented like in the report text box where you can pass in an HTML encoded string and when it's displayed it renders it as HTML. <b>Header</b>\n<u>Items</u>
You can use the ContentSettings and Html attribute to apply HTML formatting to the diagram shapes: <telerik:RadDiagram ID="Diagram1" runat="server"> <ShapesCollection> <telerik:DiagramShape Id="s1"> <ContentSettings Html="<b>Header</b><br/><u>Items</u>" /> </telerik:DiagramShape> </ShapesCollection> </telerik:RadDiagram>