Search found 12 matches

by JoshS
Fri Aug 25, 2023 5:15 am
Forum: Stimulsoft Reports.NET
Topic: Currency group size - multiple group sizes
Replies: 5
Views: 2312

Re: Currency group size - multiple group sizes

Can you please add support for it in StiCurrencyFormatService too? Currently that will only support a single group size
by JoshS
Wed Aug 23, 2023 10:52 pm
Forum: Stimulsoft Reports.NET
Topic: Currency group size - multiple group sizes
Replies: 5
Views: 2312

Re: Currency group size - multiple group sizes

Thanks for the tip - would this have any impact on other parts of the report?

Currently we're just setting the currency format specifically for currency fields
by JoshS
Mon Aug 21, 2023 4:15 am
Forum: Stimulsoft Reports.NET
Topic: Currency group size - multiple group sizes
Replies: 5
Views: 2312

Currency group size - multiple group sizes

Hi, Is it possible to have multiple currency group sizes for formatting? For example, en-IN (India) is formatted as 3 digits in the right most group, and 2 digits in all other groups (eg. 12,34,56,789.00) This is supported in .NET CultureInfo, wondering if it is possible in the report or if it would...
by JoshS
Thu Nov 03, 2022 10:11 pm
Forum: Stimulsoft Reports.NET
Topic: GrowToHeight not repositioning other text fields
Replies: 9
Views: 7903

Re: GrowToHeight not repositioning other text fields

Hello. We have reproduced the issue and need some time to make an improvement. We will let you know when we get any results. For now you can use the next code to switch graphics engine: Stimulsoft.Drawing.Graphics.GraphicsEngine = Stimulsoft.Drawing.GraphicsEngine.Gdi; Thank you. #7975 Hi Kirill, i...
by JoshS
Wed Sep 28, 2022 2:07 am
Forum: Stimulsoft Reports.NET
Topic: GrowToHeight not repositioning other text fields
Replies: 9
Views: 7903

Re: GrowToHeight not repositioning other text fields

Hello. It will work on .NET 5.0 with libgdiplus library. For .NET 6.0 it should work with the same library but there may be some issues. https://www.stimulsoft.com/en/blog/articles/how-to-use-net-6-0-with-stimulsoft-reporting-tools Thank you. Thanks Kirill. I've tried it with libgdiplus under Linux...
by JoshS
Wed Sep 28, 2022 2:05 am
Forum: Stimulsoft Reports.NET
Topic: GrowToHeight not repositioning other text fields
Replies: 9
Views: 7903

Re: GrowToHeight not repositioning other text fields

Hello. It will work on .NET 5.0 with libgdiplus library. For .NET 6.0 it should work with the same library but there may be some issues. https://www.stimulsoft.com/en/blog/articles/how-to-use-net-6-0-with-stimulsoft-reporting-tools Thank you. Thanks Kirill. I've tried it with libgdiplus under Linux...
by JoshS
Thu Sep 08, 2022 12:26 am
Forum: Stimulsoft Reports.NET
Topic: GrowToHeight not repositioning other text fields
Replies: 9
Views: 7903

Re: GrowToHeight not repositioning other text fields

Thanks Kirill.

Am I right in thinking that Gdi engine is only supported on Windows hosted services and will not work under Linux containers for example?
by JoshS
Wed Sep 07, 2022 6:06 am
Forum: Stimulsoft Reports.NET
Topic: GrowToHeight not repositioning other text fields
Replies: 9
Views: 7903

GrowToHeight not repositioning other text fields

I am trying to solve a problem with GrowToHeight. I have a number of text fields running top to bottom. One of these can have a long value. In the preview everything below gets pushed down, which is what I expect: https://i.ibb.co/nR4WVcV/image.png However, when I run this export via C# render to PD...
by JoshS
Wed Sep 07, 2022 2:01 am
Forum: Stimulsoft Reports.NET
Topic: Override currency/number format in C# not working
Replies: 3
Views: 880

Re: Override currency/number format in C# not working

Hi Max, any update on this?
by JoshS
Wed Aug 24, 2022 2:04 am
Forum: Stimulsoft Reports.NET
Topic: Override currency/number format in C# not working
Replies: 3
Views: 880

Override currency/number format in C# not working

I am trying to customise the currency formatting in code before rendering the report. Here is some sample code: var culture = new CultureInfo("de-DE"); var currencyFields = components.Where(x => x is StiText stiText && stiText.TextFormat is StiCurrencyFormatService).Select(x => x a...