Hi,
I woul'd like to hide only one tool in the tools list for example or one serie in the list.
I am using "internal" series and tools and i woul'd like to prevent the user to access to these objects.
How is it possible to do that ?
Regards
Hide only one tool in the tools list
Hide one serie for internal use
Hi,
I find the solution to hide one tool by using the protected property InternalUse.
I didn't find how to do that for series. I woul'd like to hide one or two series in the list because i use these series for internal use.
Do you have a solution ?
Regards
I find the solution to hide one tool by using the protected property InternalUse.
I didn't find how to do that for series. I woul'd like to hide one or two series in the list because i use these series for internal use.
Do you have a solution ?
Regards
Hi,
yes, using the InternalUse property you can also do the same for the Series, you must use :
yes, using the InternalUse property you can also do the same for the Series, you must use :
Code: Select all
type TChartSeriesAccess=class(TChartSeries);
procedure TForm1.BitBtn1Click(Sender: TObject);
begin
TChartSeriesAccess(Series1).InternalUse:=true;
Charteditor1.Execute;
end;
Pep Jorge
http://support.steema.com
http://support.steema.com