Page 1 of 1
List of unit (uses) for all kind of series
Posted: Mon Jul 10, 2023 7:49 am
by 16565015
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 ?
Re: List of unit (uses) for all kind of series
Posted: Tue Jul 11, 2023 1:09 pm
by yeray
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.
Re: List of unit (uses) for all kind of series
Posted: Wed Jul 12, 2023 7:05 am
by 16565015
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" ?
Re: List of unit (uses) for all kind of series
Posted: Wed Jul 12, 2023 5:32 pm
by yeray
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.