Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Maybe I missed the docs for this, but how do we serialize a diagram? Thanks.
Serialization - RadDiagram supports serializing and deserializing diagramming objects into and from XML documents.
Ok so it's literally
var serializationInfo = radDiagram1.Serialize();
I'd delete the thread if I could.
string
diagramShapes;
private
void
radButton1_Click(
object
sender, EventArgs e)
{
diagramShapes = radDiagram1.Save();
}
radButton2_Click(
radDiagram1.Load(diagramShapes);