Search found 9526 matches

by Yeray
Mon Feb 26, 2024 7:11 am
Forum: VCL
Topic: Move chart in Tform
Replies: 3
Views: 481

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: 279

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: 279

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: 317

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...
by Yeray
Wed Feb 07, 2024 2:41 pm
Forum: VCL
Topic: How to get TColorGrid scrolling
Replies: 5
Views: 2282

Re: How to get TColorGrid scrolling

Hello Sciensoria,

Have you seen the example here?
It shows hot to create a custom palette.
mstsc_LnnsAn2IU7.png
mstsc_LnnsAn2IU7.png (148.58 KiB) Viewed 727 times
by Yeray
Tue Feb 06, 2024 7:43 am
Forum: VCL / FMX
Topic: TeeGrid color questions
Replies: 8
Views: 12579

Re: TeeGrid color questions

Hello, This is already fixed so the next release should include this fix. Here the diff if you want to try to apply it to your sources without having to wait for the next release: diff --git a/Sources/Tee.Grid.Bands.Columns.pas b/Sources/Tee.Grid.Bands.Columns.pas index 73d332e0..baa6bb0b 100644 ---...
by Yeray
Fri Feb 02, 2024 7:29 am
Forum: VCL / FMX
Topic: TeeGrid color questions
Replies: 8
Views: 12579

Re: TeeGrid color questions

Hello,

Do you have a simple example we can run as-is to reproduce the problem here?
Thanks in advance.
by Yeray
Thu Feb 01, 2024 8:59 am
Forum: VCL
Topic: Problem with PDF export
Replies: 1
Views: 583

Re: Problem with PDF export

Hello,

I've been able to reproduce the problem so I've added it to the public tracker (#2669).
Thanks for reporting it.
by Yeray
Thu Feb 01, 2024 7:35 am
Forum: VCL / FMX
Topic: I'm a brand new user, have some findings and a Ticker demo AV
Replies: 1
Views: 8129

Re: I'm a brand new user, have some findings and a Ticker demo AV

Hello, Sorry for the delayed reply here. We are still studying all the issues reported but we'll do some changes, hopefully in all of them. - .NET dependency. I think we'll be able to change the utility to avoid that dependency. - Environment variables and paths. We have to revise the creation of al...
by Yeray
Thu Jan 25, 2024 7:52 am
Forum: VCL
Topic: How to get TColorGrid scrolling
Replies: 5
Views: 2282

Re: How to get TColorGrid scrolling

Hello,

I'd suggest you to take a look at the ColorGrid example in the Features Demo shipped with the binary installer.
Here some screenshots changing some of the properties you mention:
viewtopic.php?f=3&t=16044&p=71207#p71207
by Yeray
Thu Jan 11, 2024 12:13 pm
Forum: VCL
Topic: How to make space in the legend for drawing?
Replies: 1
Views: 6867

Re: How to make space in the legend for drawing?

Hello, You could set the Symbol.Position to spRight , but then the texts are moved to the left and it's also broken. Could you please confirm it? Legend.Symbol.Position:=spRight; To work around this, you could set the Symbol.Position to spLeft at the OnBeforeDrawChart event and set it to spRight at ...
by Yeray
Mon Jan 08, 2024 7:00 am
Forum: VCL
Topic: Suggestion for Improving TeeChart
Replies: 2
Views: 4462

Re: Suggestion for Improving TeeChart

Hello Charlie,

I've just replied you here.
by Yeray
Mon Jan 08, 2024 6:59 am
Forum: Wishes and ideas
Topic: Improving TChartEditor/Making App Development Easier
Replies: 2
Views: 7034

Re: Improving TChartEditor/Making App Development Easier

Hello Charlie,

I understand it would be interesting to find a way to easily show the properties modified. However, I'm not sure it could be done easily. Also note you can open the form in "text mode" and see all the modified properties in the chart and series.
by Yeray
Wed Jan 03, 2024 4:25 pm
Forum: VCL
Topic: Curve Fit Null Values
Replies: 1
Views: 2520

Re: Curve Fit Null Values

Hello, I'm not sure if this solves the problem you are describing but I've done a simple example with my proposal. In the example I'm populating a TPointSeries with 14 values, from 0 to 14 with a hole at XValue=7 . Then, I'm adding a TFasTLineseries with a TCurveFittingFunction . Finally, I'm calcul...
by Yeray
Wed Jan 03, 2024 2:32 pm
Forum: VCL
Topic: TDBF and TDBChart
Replies: 1
Views: 2614

Re: TDBF and TDBChart

Hello,

Migrating from BDE to FireDAC seems to be the most recommended way to go.
Give it a try and let us know if you find any problem with it.