Search found 20 matches

by hlohning
Mon Aug 14, 2023 5:32 am
Forum: SDL Discussion Forum
Topic: Windows 11 compatibility
Replies: 1
Views: 15387

Re: Windows 11 compatibility

Sorry for the late reply (the forum was flooded with spam activities).
As for your question: yes the installer is compatible with Windows 11.
Regards, Hans
by hlohning
Mon Apr 04, 2022 1:52 pm
Forum: SDL Discussion Forum
Topic: Plot 3D
Replies: 2
Views: 15722

Re: Plot 3D

Please post the code snippet which shows the problematic code. Otherwise it's impossible to help you.
Regards,
Hans
by hlohning
Sat Mar 26, 2022 6:50 pm
Forum: SDL Discussion Forum
Topic: Xaxis Labels as Dates
Replies: 7
Views: 408249

Re: Xaxis Labels as Dates

Chris,

just an idea: did you specify "sdl_sdlbase" in the "uses" statement?

ftDateTime is a constant which is defined in the unit sdl_sdlbase. In the case another unit accidentally defines the same constant this might result in the effect you described.

Regards,
Hans
by hlohning
Wed Mar 23, 2022 6:51 am
Forum: SDL Discussion Forum
Topic: Xaxis Labels as Dates
Replies: 7
Views: 408249

Re: Xaxis Labels as Dates

Hi Chris, I suspect that the identifier "ftDateDime" is declared in another unit as well. You can solve this by adding the unit specifier where "ftDateTime" is declared in the SDL component suite (ftDateTime is declared in unit sdl_sdlbase): sdl_sdlbase.ftDateTime Let me know if this resolves your ...
by hlohning
Sat Dec 04, 2021 4:56 pm
Forum: SDL Discussion Forum
Topic: Create Custom plot series
Replies: 1
Views: 15105

Re: Create Custom plot series

Hi Talal,
sorry for the late reply....
Frankly speaking, I'm not sure whether this is possible, mostly because I'm not sure if I fully understand your intentions. If you could provide screenshot of an example of your visualization goals, this would help.
Regards,
Hans
by hlohning
Sat Dec 04, 2021 4:52 pm
Forum: SDL Discussion Forum
Topic: ReportListview with cyrilic alphabet
Replies: 2
Views: 17275

Re: ReportListview with cyrilic alphabet

Hm, I've to admit that I never tried this. But I suspect that you have to set the Font property accordingly.
Let me know, if this works.
- Hans
by hlohning
Sat Dec 04, 2021 4:50 pm
Forum: SDL Discussion Forum
Topic: Multi-layer 2D Contour Plot
Replies: 1
Views: 14572

Re: Multi-layer 2D Contour Plot

Hi Paul, you cannot put two contour plots on top of each other (in the sense of stacked transparent films). However, if you want to draw your own custom lines on top of a contour plot you can use the event "OnDataRendered". See http://www.lohninger.com/helpcsuite/ondatarendered_contourplot.htm for t...
by hlohning
Sat Dec 04, 2021 4:45 pm
Forum: SDL Discussion Forum
Topic: RChart zoom moves lines
Replies: 1
Views: 15024

Re: RChart zoom moves lines

Hi Kevin,
this effect most probably results from rounding effects when you zoom in too far.
Maybe you want to use the procedure ConfineZoomRange do prevent users from zooming in too far:
http://www.lohninger.com/helpcsuite/con ... mrange.htm
Hope this helps,
Hans
by hlohning
Sat Dec 04, 2021 4:41 pm
Forum: SDL Discussion Forum
Topic: Two-term exponential fit
Replies: 1
Views: 14336

Re: Two-term exponential fit

Hi,
I'm sorry to say that there is currently no chance to implement a two-term exponential fit.

Regards, Hans
by hlohning
Mon Aug 09, 2021 6:08 pm
Forum: SDL Discussion Forum
Topic: CurveFit demo not fully working
Replies: 2
Views: 17560

Re: CurveFit demo not fully working

Hi Bruce, there seems to be a bug in the program which disables the input of new data points after clearing the data and setting the first point. As a quick workaround you can click the "pencil" button once again after setting the first point. Afterwards you can enter additional points. Let me know ...