Search found 9671 matches

by Yeray
Mon May 19, 2025 11:33 am
Forum: VCL
Topic: TeeChart Pro - SSL support was not enabled for this installer
Replies: 1
Views: 1071

Re: TeeChart Pro - SSL support was not enabled for this installer

Hello Andrew,

Apologies for that.
Indeed we had an issue with the proxy in the web. We just corrected it and it should work fine now.
by Yeray
Mon May 19, 2025 10:31 am
Forum: VCL
Topic: Installation problems
Replies: 4
Views: 2055

Re: Installation problems

Hello,

That md5 checksum looks correct.
I'm afraid the installer requires user interaction to validate the license and password with the GUI, so I don't think it can support a network install.
Also note the product requires a different license per developer.
by Yeray
Fri May 16, 2025 10:08 am
Forum: VCL
Topic: Placement of Series.Marks (TPointSeries)
Replies: 8
Views: 7828

Re: Placement of Series.Marks (TPointSeries)

Hello,

Great! Thanks for the feedback!
by Yeray
Fri May 16, 2025 7:46 am
Forum: VCL
Topic: Installation problems
Replies: 4
Views: 2055

Re: Installation problems

Hello, You can download both the regular and offline installers from here . The trial installers are the same as the licensed ones; the only difference is that the trial or licensed packages are extracted depending on the license you enter when prompted. The regular installer is a 20MB file that dow...
by Yeray
Mon May 12, 2025 10:12 am
Forum: VCL
Topic: Placement of Series.Marks (TPointSeries)
Replies: 8
Views: 7828

Re: Placement of Series.Marks (TPointSeries)

Hello,

Invalidate sets the chart "dirty" but not immediately repainted.
Repaint calls Invalidate and Update, where the later immediately repaints any invalidated region if the WindowHandle is allocated, which isn't the case at the form FormCreate yet.
by Yeray
Mon May 12, 2025 6:39 am
Forum: VCL
Topic: Placement of Series.Marks (TPointSeries)
Replies: 8
Views: 7828

Re: Placement of Series.Marks (TPointSeries)

Hello, You may need to force a chart draw before exporting the chart to a metafile. I've tried it in this example and it seems to work: uses Chart, Series, TeEngine, ExtCtrls; procedure TForm1.FormCreate(Sender: TObject); var Chart1: TChart; metafile: TMetafile; image: TImage; begin // Create in-mem...
by Yeray
Fri May 09, 2025 1:42 pm
Forum: VCL
Topic: Placement of Series.Marks (TPointSeries)
Replies: 8
Views: 7828

Re: Placement of Series.Marks (TPointSeries)

Hello, During the drawing routine, at the DrawMarks function the string to be drawn is calculated (which fires the OnGetMarkText event). Next, the TSeriesMarks.InternalDraw function is called. In this function we create an array of TSeriesMarkPosition if it doesn't exist and initialise it, setting C...
by Yeray
Thu May 08, 2025 6:29 am
Forum: VCL / FMX
Topic: Demo in wrong place
Replies: 3
Views: 2773

Re: Demo in wrong place

Hello,

I see the spreadsheet example shipped with TeeGrid at the "demos\FireMonkey\Sheet" folder in the installation requires three TeeBI units you can download from here.
by Yeray
Mon May 05, 2025 4:48 pm
Forum: VCL
Topic: Problem with the TeeChart component installer
Replies: 4
Views: 13889

Re: Problem with the TeeChart component installer

Hello,

Those broken installer downloads should be solved now. Please try downloading it again and sorry for the inconvenience.
by Yeray
Wed Apr 30, 2025 7:55 am
Forum: VCL
Topic: Problem with the TeeChart component installer
Replies: 4
Views: 13889

Re: Problem with the TeeChart component installer

Hello, We migrated the main web site to a new server and are suffering issues with it. Of course we are trying to solve all the problems asap. In the meanwhile, we are sending mails with links to the direct downloads to avoid those problems. Check your inboxes. Sorry for the inconvenience generated ...
by Yeray
Tue Apr 29, 2025 11:11 am
Forum: VCL
Topic: Can't install TeeChart
Replies: 3
Views: 4265

Re: Can't install TeeChart

Hello Peter,

Thanks for the positive feedback!
We'll keep pushing.
by Yeray
Tue Apr 29, 2025 8:46 am
Forum: VCL
Topic: Can't install TeeChart
Replies: 3
Views: 4265

Re: Can't install TeeChart

Hello Peter, I'm sorry to hear you are finding such problems. I'd ask you to redownload the installer again to make sure the download hasn't been broken but we are in the middle of a server upgrade which is taking longer then expected. In the meanwhile, you could try to download the installer from h...
by Yeray
Thu Apr 24, 2025 6:18 am
Forum: VCL
Topic: TeeChart VCL/FMX v2025 [23 APR 2025] RELEASE 2025.43.250423
Replies: 0
Views: 5373

TeeChart VCL/FMX v2025 [23 APR 2025] RELEASE 2025.43.250423

Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2025.43.250423 release with full RAD Studio 12 Athens Update 3 (RX/DX/CX) support, including the new 64bit IDE. The new update includes TeeChart Pro and Standard source code installers for all d...
by Yeray
Thu Apr 24, 2025 6:18 am
Forum: FMX
Topic: TeeChart VCL/FMX v2025 [23 APR 2025] RELEASE 2025.43.250423
Replies: 0
Views: 26939

TeeChart VCL/FMX v2025 [23 APR 2025] RELEASE 2025.43.250423

Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2025.43.250423 release with full RAD Studio 12 Athens Update 3 (RX/DX/CX) support, including the new 64bit IDE. The new update includes TeeChart Pro and Standard source code installers for all d...
by Yeray
Wed Apr 23, 2025 7:16 am
Forum: VCL
Topic: Help wanted overcoming delay in repainting contour graph
Replies: 2
Views: 7791

Re: Help wanted overcoming delay in repainting contour graph

Hello Andrew, This probably happens because the MakeIsoAxis function changes the axes scales but doesn’t redraw the chart, so the changes only take effect the next time the chart is drawn. To fix this, you likely just need to force a chart redraw by calling Draw() at the end of your FormCreate event...