List of unit (uses) for all kind of series

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Fab
Newbie
Newbie
Posts: 12
Joined: Mon Feb 18, 2013 12:00 am

List of unit (uses) for all kind of series

Post by Fab » Mon Jul 10, 2023 7:49 am

Hello,

I'am trying to add all kind of series available for my end-users using TChartEditor in runtime.
The unit list is here :
http://www.teechart.net/docs/teechart/vclfmx/lib/
But there is a lot of unit. Does it's exists a tip find the list of unit which are needed to uses all type of series ?

Yeray
Site Admin
Site Admin
Posts: 9534
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: List of unit (uses) for all kind of series

Post by Yeray » Tue Jul 11, 2023 1:09 pm

Hello,

The VCLTee.TeeChartPro unit registers all the Pro components (editors, etc).
If you want to register the Standard series, you can call RegisterTeeStandardSeries from VCLTee.Series unit.
You can also register manually a single series or class with RegisterClass function.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Fab
Newbie
Newbie
Posts: 12
Joined: Mon Feb 18, 2013 12:00 am

Re: List of unit (uses) for all kind of series

Post by Fab » Wed Jul 12, 2023 7:05 am

Hello Yeray,

That I need it's not the "standard" chart. I'am looking for all the "Advanced" series unit form here :
http://www.teechart.net/docs/teechart/vclfmx/lib/
To be available for end-user in the TchartEditor.
Do you have a tips to find it or a list somewhere ?

Does it correct if I add all the units (*.pas) which contains the function "RegisterTeeSeries" ?

Yeray
Site Admin
Site Admin
Posts: 9534
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: List of unit (uses) for all kind of series

Post by Yeray » Wed Jul 12, 2023 5:32 pm

Hello,

You can add the TeeEditPro unit for the TChartEditor to show all the Pro options. Ie:

Code: Select all

uses EditChar, TeeEditPro;

procedure TForm1.Button1Click(Sender: TObject);
begin
  EditChart(Self, Chart1);
end;
Note the Chart Editor is made to help developers to design their charts; it's not intended or recommended for the final user because it has so many options it's quite easy to set options with little or no sense.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply