Hello,
Great! Thanks for the feedback!
Search found 9669 matches
- Fri May 16, 2025 10:08 am
- Forum: VCL
- Topic: Placement of Series.Marks (TPointSeries)
- Replies: 8
- Views: 7087
- Fri May 16, 2025 7:46 am
- Forum: VCL
- Topic: Installation problems
- Replies: 2
- Views: 241
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...
- Mon May 12, 2025 10:12 am
- Forum: VCL
- Topic: Placement of Series.Marks (TPointSeries)
- Replies: 8
- Views: 7087
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.- Mon May 12, 2025 6:39 am
- Forum: VCL
- Topic: Placement of Series.Marks (TPointSeries)
- Replies: 8
- Views: 7087
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...
- Fri May 09, 2025 1:42 pm
- Forum: VCL
- Topic: Placement of Series.Marks (TPointSeries)
- Replies: 8
- Views: 7087
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...
- Thu May 08, 2025 6:29 am
- Forum: VCL / FMX
- Topic: Demo in wrong place
- Replies: 3
- Views: 2477
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.
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.
- Mon May 05, 2025 4:48 pm
- Forum: VCL
- Topic: Problem with the TeeChart component installer
- Replies: 4
- Views: 13173
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.
Those broken installer downloads should be solved now. Please try downloading it again and sorry for the inconvenience.
- Wed Apr 30, 2025 7:55 am
- Forum: VCL
- Topic: Problem with the TeeChart component installer
- Replies: 4
- Views: 13173
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 ...
- Tue Apr 29, 2025 11:11 am
- Forum: VCL
- Topic: Can't install TeeChart
- Replies: 3
- Views: 4024
Re: Can't install TeeChart
Hello Peter,
Thanks for the positive feedback!
We'll keep pushing.
Thanks for the positive feedback!
We'll keep pushing.
- Tue Apr 29, 2025 8:46 am
- Forum: VCL
- Topic: Can't install TeeChart
- Replies: 3
- Views: 4024
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...
- Thu Apr 24, 2025 6:18 am
- Forum: VCL
- Topic: TeeChart VCL/FMX v2025 [23 APR 2025] RELEASE 2025.43.250423
- Replies: 0
- Views: 5082
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...
- Thu Apr 24, 2025 6:18 am
- Forum: FMX
- Topic: TeeChart VCL/FMX v2025 [23 APR 2025] RELEASE 2025.43.250423
- Replies: 0
- Views: 23642
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...
- Wed Apr 23, 2025 7:16 am
- Forum: VCL
- Topic: Help wanted overcoming delay in repainting contour graph
- Replies: 2
- Views: 7603
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...
- Fri Apr 11, 2025 11:06 am
- Forum: VCL
- Topic: Chart shows a dip when including decimals
- Replies: 2
- Views: 7389
Re: Chart shows a dip when including decimals
Hello, Looking at the final data in the series I see at the index 18, instead of reusing the preceding value (index 17), it takes the value of a couple of indices above (index 15): JFKUAgWmmP.png If you debug the final lChartStepDowns loop, where you add the repeated values, you'll see you are getti...
- Mon Apr 07, 2025 8:53 am
- Forum: VCL
- Topic: Free CustomAxes?
- Replies: 3
- Views: 5764
Re: Free CustomAxes?
Hello,
Note the CustomAxes (and many other objects) can also be created at design time or at runtime via the editor. So I guess that would be an obstacle to that "manual creation requires manual destruction" rule.
But yes, I'll check if we can add a note somewhere in the docs.
Note the CustomAxes (and many other objects) can also be created at design time or at runtime via the editor. So I guess that would be an obstacle to that "manual creation requires manual destruction" rule.
But yes, I'll check if we can add a note somewhere in the docs.