Hi,
I have a problem with rendering shadow effects. It works correct on JS version, but .NET versions looks like is ignoring shadow effects.
I prepared 2 screenshots to show difference and sample console application that could help you in reproducing problem.
I use version 2025.3.1
Js vesrion working correctly:
.NET version:
Shadow effect is not rendering
Shadow effect is not rendering
- Attachments
-
- Program.zip
- (2.36 KiB) Downloaded 51 times
-
- Posts: 7354
- Joined: Tue Mar 20, 2018 5:34 am
Re: Shadow effect is not rendering
Hello,
We need some additional time to investigate the issue, we will let you know about the result as soon as possible.
Thank you.
#18005
We need some additional time to investigate the issue, we will let you know about the result as soon as possible.
Thank you.
#18005
-
- Posts: 7354
- Joined: Tue Mar 20, 2018 5:34 am
Re: Shadow effect is not rendering
Hello,
Shadows are only supported in html-div mode (technical limitations for Table).
In JS, the preview is in div mode by default, which is why it displays correctly.
You use default export settings, which are in Table mode. To fix this, add the following:
settings.ExportMode = StiHtmlExportMode.Div;
Thank you.
Shadows are only supported in html-div mode (technical limitations for Table).
In JS, the preview is in div mode by default, which is why it displays correctly.
You use default export settings, which are in Table mode. To fix this, add the following:
settings.ExportMode = StiHtmlExportMode.Div;
Thank you.