Hi,
It's possible to hide Dataset in the editor by using IsValidDataSource function. How is it possible to hide series and tools ?
Regards
Hide series and tools in the editor
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi stsl,
Yes, this is possible.
For hidding datasets please have a look at the "All Features\Welcome!\Components\Chart Editor\Hide DataSets" example at the TeeChart features demo which you'll find at TeeChart's program group.
Regarding hidding chart editor tabs you can include TeeEditCha unit to your project and do:
Yes, this is possible.
For hidding datasets please have a look at the "All Features\Welcome!\Components\Chart Editor\Hide DataSets" example at the TeeChart features demo which you'll find at TeeChart's program group.
Regarding hidding chart editor tabs you can include TeeEditCha unit to your project and do:
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
ChartEditor1.Execute;
end;
procedure TForm1.FormCreate(Sender: TObject);
Var NewTabs: TChartEditorHiddenTabs;
begin
NewTabs:=[cetTools, cetSeriesGeneral, cetSeriesMarks,
cetAllSeries, cetSeriesData];
ChartEditor1.HideTabs:=ChartEditor1.HideTabs+NewTabs;
end;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Hiding only one tool or one serie
Hi,
It's not that i woul'd like to to. 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.
Regards
It's not that i woul'd like to to. 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.
Regards
Hi,
In meantime a trick could be to remove the tool you want to hide before to call the Chart Editor and then add it again.
This feature is not yet available, however I've added it on our wish list to be considered for further releases.It's not that i woul'd like to to. I woul'd like to hide only one tool in the tools list for example or one serie in the list.
In meantime a trick could be to remove the tool you want to hide before to call the Chart Editor and then add it again.
Pep Jorge
http://support.steema.com
http://support.steema.com