The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ARAravind Ravi Syncfusion Team June 3, 2022 11:46 AM UTC
Hi Lorryl,
Please find the response for queries in below table
when call loadDiagram method, it will error.
We are unable to reproduce the reported issue at our end.
When we tried to save the diagram and call loadDiagram method, the diagram
has been loaded properly. For more information about how to use save and load
diagram, please refer to below UG link
The below image I am using in html type is a font awesome,
how to make the font size follow the parent size when resizing?
Whenever we resize any node in the diagram, sizeChange
event gets triggered. In that event get the text element from DOM and change
its fontSize as per your requirement. We have created a simple sample to
change the fontsize of text element. Please refer to below code snippet and
sample
public sizeChange(args: ISizeChangeEventArgs) {
if (args.state
=== 'Completed') {
var node =
args.source.nodes[0];
var element
= document.getElementById(node.id + '_text');