Search found 9507 matches

by Yeray
Wed Mar 27, 2024 11:45 am
Forum: VCL
Topic: D12 and (Font) Scaling and Printing
Replies: 2
Views: 60

Re: D12 and (Font) Scaling and Printing

Hello,

I've copied your code to a simple example with just a THorizBarSeries, and this is how it looks for me:
ScalingGraphic.zip
(2.29 KiB) Downloaded 2 times
At 100%:
scalingGraphic.png
scalingGraphic.png (18.55 KiB) Viewed 39 times
At 175%, the forums seem to rescale the image - open it in a new tab to see the real size:
scalingGraphic_175.png
scalingGraphic_175.png (41.03 KiB) Viewed 39 times
by Yeray
Wed Mar 27, 2024 9:55 am
Forum: VCL
Topic: v2023.39 (231109) y-axis label issue
Replies: 6
Views: 204

Re: v2023.39 (231109) y-axis label issue

Hello,

Indeed setting Increment to 1 was the key to reproduce the problem.
I've added it to the public tracker: #2690
by Yeray
Tue Mar 26, 2024 1:13 pm
Forum: VCL
Topic: 2023.39 TeeRecompile Command Line for D12 failing
Replies: 1
Views: 122

Re: 2023.39 TeeRecompile Command Line for D12 failing

Hello,

There was a bug in TeeRecompile. Give it a try at this version:
https://www.steema.com/files/private/tm ... 240326.zip
by Yeray
Fri Mar 22, 2024 3:40 pm
Forum: VCL
Topic: v2023.39 (231109) y-axis label issue
Replies: 6
Views: 204

Re: v2023.39 (231109) y-axis label issue

Hello, I've tried to reproduce the problem with this simple example code without success. uses Chart, Series; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin Chart1:=TChart.Create(Self); with Chart1 do begin Parent:=Self; Align:=alClient; Color:=clWhite; Gradi...
by Yeray
Fri Mar 22, 2024 1:14 pm
Forum: FMX
Topic: installation problems
Replies: 2
Views: 174

Re: installation problems

Hello, The error message "Cannot load package *Tee*. It contains unit *, which is also contained in package *Tee*", where any of the *Tee* packages ends with a "0" (*Tee*0), indicates that the TeeChart Standard/Lite package that was shipped with the IDE (*Tee*0) is still trying to be loaded, and thi...
by Yeray
Fri Mar 15, 2024 7:58 am
Forum: VCL
Topic: Teechart legend color series
Replies: 1
Views: 154

Re: Teechart legend color series

Hello, Do you have a simple example project we can run as-is to reproduce the problem here? This seems to work as expected here: uses Chart, Series; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin Chart1:=TChart.Create(Self); with Chart1 do begin Parent:=Self;...
by Yeray
Mon Mar 11, 2024 10:37 am
Forum: VCL
Topic: !! V2023.39.231109 Critical Performance issues !!
Replies: 4
Views: 246

Re: !! V2023.39.231109 Critical Performance issues !!

Hello,

I've been able to reproduce the problem so I've added it to the public tracker (#2685).
It seems the problem was introduced in v2023.38.
by Yeray
Mon Mar 11, 2024 8:47 am
Forum: VCL
Topic: 32 vs 64 bit performance
Replies: 3
Views: 148

Re: 32 vs 64 bit performance

Hello,

We'll be pleased to take a look at any issue you may find.
by Yeray
Thu Mar 07, 2024 12:31 pm
Forum: VCL
Topic: MouseWheel Scrolling doesn't trigger OnScroll
Replies: 4
Views: 2291

Re: MouseWheel Scrolling doesn't trigger OnScroll

Hello Stefan,

I'm afraid the request Narcís added was lost when we moved to bugzilla.
I've added it at #2683, and already fixed it.

So the next version should be triggering OnScroll event from the mouse wheel.
by Yeray
Thu Mar 07, 2024 7:31 am
Forum: VCL
Topic: Legend Checkbox not styled by Delphi Themes
Replies: 2
Views: 191

Re: Legend Checkbox not styled by Delphi Themes

Hello Charlie,

I'm afraid you are right and TeeChart doesn't support themed legend checkboxes.
I've added it to the public tracker (#2682).
by Yeray
Mon Feb 26, 2024 11:25 am
Forum: VCL
Topic: Move chart in Tform
Replies: 3
Views: 413

Re: Move chart in Tform

Hello, I'm sorry but I'm not sure to understand the situation. The TChart class inherits from TControl and the Align property with it, which can be set to alNone , alTop , alBottom , alLeft , alRight , alClient or alCustom . If this doesn't answer your question, please provide a more detailed descri...
by Yeray
Mon Feb 26, 2024 7:11 am
Forum: VCL
Topic: Move chart in Tform
Replies: 3
Views: 413

Re: Move chart in Tform

Hello,

I'm not sure if this is what you mean:
https://stackoverflow.com/questions/243 ... -inside-it
by Yeray
Mon Feb 26, 2024 7:07 am
Forum: VCL
Topic: How is memory affected depending on how instantitate teechart?
Replies: 3
Views: 214

Re: How is memory affected depending on how instantitate teechart?

Hello,
McSaverCharting wrote:
Mon Feb 26, 2024 4:49 am
where are you getting all your stock info?
I'm sorry but I don't understand what stock info do you mean?
by Yeray
Mon Feb 26, 2024 7:06 am
Forum: VCL
Topic: How is memory affected depending on how instantitate teechart?
Replies: 3
Views: 214

Re: How is memory affected depending on how instantitate teechart?

Hello, The TChart component is like any other component. It's basically a set of properties and methods, hundreds of them. I wouldn't say TChart is memory expensive at all, specially given all the possibilities it offers. Instead, I'd say a TChart can be memory expensive depending in the data it con...
by Yeray
Mon Feb 19, 2024 10:24 am
Forum: VCL
Topic: TMarkToolTip text showing only one time
Replies: 1
Views: 271

Re: TMarkToolTip text showing only one time

Hello, The TMarksTipTool has a HideDelay you can use to control the milliseconds to wait until the mark is automatically hidden. If you don't want it to be automatically hidden, you can set it to -1 . This way it will only be hidden once the mouse cursor leaves the point. Is this what you would like...