Page 2 of 2

Re: Report Viewer in shadow DOM

Posted: Fri Mar 06, 2026 2:17 am
by noob
Thanks

Re: Report Viewer in shadow DOM

Posted: Fri Mar 06, 2026 10:54 am
by Max Shamanov
Hello,

We have made several fixes, and fonts should now display correctly in Print-Print mode.
Please load the fonts you use into StiFontCollection.
You will also need to enable the following option:

Code: Select all

AllowLoadingCustomFontsToClientSide = true
.
You should specify it in the Designer options as follows:

Code: Select all

public StiBlazorDesignerOptions Options = new StiBlazorDesignerOptions()
{
       Server =
    {
        AllowLoadingCustomFontsToClientSide = true
    }
};
Please check our next build once it becomes available.


Thank you.

Re: Report Viewer in shadow DOM

Posted: Fri Mar 06, 2026 1:38 pm
by noob
Thanks