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 ?
List of unit (uses) for all kind of series
Re: List of unit (uses) for all kind of series
Hello,
The
If you want to register the Standard series, you can call
You can also register manually a single series or class with
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: List of unit (uses) for all kind of series
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" ?
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" ?
Re: List of unit (uses) for all kind of series
Hello,
You can add the
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.
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;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |